You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The logic in NewTyp::mkTypForConstrainedType is ugly and probably wrong in some cases. It should be replaced with either a ginormous switch statement (which is more intuitive from an ML-persons point of view, but not LLVM idiomatic) or a RecursiveASTVisitor (which is ugly from an ML-persons point of view because functionality is smeared across a bunch of tiny functions, but is LLVM idiomatic).
The text was updated successfully, but these errors were encountered:
The logic in NewTyp::mkTypForConstrainedType has been replaced with another class (ConstraintVariable) however, that infrastructure has a need for the same change.
This issue was copied from checkedc/checkedc-clang#48
The logic in
NewTyp::mkTypForConstrainedType
is ugly and probably wrong in some cases. It should be replaced with either a ginormous switch statement (which is more intuitive from an ML-persons point of view, but not LLVM idiomatic) or aRecursiveASTVisitor
(which is ugly from an ML-persons point of view because functionality is smeared across a bunch of tiny functions, but is LLVM idiomatic).The text was updated successfully, but these errors were encountered: