Next: src/inlining, Previous: src/astclone, Up: Project Layout [Contents][Index]
The desugar::DesugarVisitor
visitor. Remove constructs that can
be considered as syntactic sugar using other language constructs. For
instance, turn for
loops into while
loops, string
comparisons into function calls. Inherits from astclone::Cloner
,
so the desugared AST is a modified copy of the initial tree.
The desugar::BoundsCheckingVisitor
visitor. Add dynamic array
bounds checks while duplicating an ast
. Inherits from
astclone::Cloner
, so the result is a modified copy of the input
AST.