Changes in / [86841ee:c82dad4]
- Files:
-
- 2 added
- 3 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Decl.hpp
r86841ee rc82dad4 119 119 enum ArgumentFlag { FixedArgs, VariableArgs }; 120 120 121 /// Functiondeclaration `int foo()`121 /// Object declaration `int foo()` 122 122 class FunctionDecl final : public DeclWithType { 123 123 public: -
src/AST/Stmt.hpp
r86841ee rc82dad4 269 269 270 270 ForeachStmt( const CodeLocation & loc, const std::vector<ptr<Stmt>> && inits, 271 const Expr * range_over, RangeDirection isInc, const Stmt * body, 272 const Stmt * else_, const std::vector<Label> && labels = {} ) 271 const Expr * range_over, RangeDirection isInc, const Stmt * body, const Stmt * else_ ) 273 272 : Stmt(loc, std::move(labels)), inits(std::move(inits)), range(range_over), 274 273 body(body), else_(else_), isIncreasing(isInc) {} -
src/Parser/TypedefTable.cpp
r86841ee rc82dad4 25 25 #include "ExpressionNode.hpp" // for LabelNode 26 26 #include "ParserTypes.hpp" // for Token 27 #include "StatementNode.hpp" // for CondCt rl, ForCtrl27 #include "StatementNode.hpp" // for CondCtl, ForCtrl 28 28 // This (generated) header must come late as it is missing includes. 29 29 #include "parser.hh" // for IDENTIFIER, TYPEDEFname, TYPEGENname
Note: See TracChangeset
for help on using the changeset viewer.