TC-E Code to Write
See The src/ast Directory and The src/escapes Directory.
- src/ast/pretty-printer.*
Implement
--escapes-displaysupport in thePrettyPrinter. Follow strictly the output format, since we parse your output to check it. Display the/* escaping */flag where needed, and only where needed: each definition of an escaping variable/formal is preceded by the comment/* escaping */. Do not display meaningless flags due to implementation details. How this pretty-printing is implemented is left to you, but factor common code.- src/ast/escapable.*
Ensure
ast::VarDecinherits fromast::Escapable. See Escapable.- src/escapes/escapes-visitor.*
Write the class
escapes::EscapesVisitorinsrc/escapes/escapes-visitor.hhandsrc/escapes/escapes-visitor.cc. Do not forget to useast::DefaultVisitorto factor as much code as possible.