Changes in src/AST/porting.md [6f4b7f2:489bacf]
- File:
-
- 1 edited
-
src/AST/porting.md (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/porting.md
r6f4b7f2 r489bacf 37 37 * all subclass constructors must fill it; by convention, from their first argument 38 38 39 `N->print(std::ostream&)` is a visitor now 40 * `Declaration::printShort` is alsointegrated39 `N->print(std::ostream&)` is a visitor now, port these methods to `ast::Print` class 40 * **TODO** `Declaration::printShort` should also be integrated 41 41 42 42 `clone` is private to `Node` now … … 137 137 * `parameters` => `params` 138 138 139 `EnumDecl` 140 * **TODO** rebuild `eval` for new AST (re: `valueOf` implementation) 141 139 142 `Expr` 140 143 * Merged `inferParams`/`resnSlots` into union, as suggested by comment in old version … … 148 151 * `function` => `func` 149 152 * removed `begin_args()` in favour of `args.begin()` 153 154 `MemberExpr` 155 * **TODO** port setup of `result` in constructor 150 156 151 157 `ConstantExpr` … … 198 204 `TryStmt` 199 205 * `block` -> `body` and `finallyBlock` -> `finally` 200 201 `ThrowStmt` `CatchStmt`202 * moved `Kind` enums to shared `ast::ExceptionKind` enum203 206 204 207 `FinallyStmt`
Note:
See TracChangeset
for help on using the changeset viewer.