Next: , Previous: , Up: Project Layout   [Contents][Index]


3.2.15 The src/desugar Directory

File: desugar-visitor.* (src/desugar)

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.

File: bounds-checking-visitor.* (src/desugar)

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.