Changes in src/AST/Expr.hpp [e6cf857f:4ec9513]
- File:
-
- 1 edited
-
src/AST/Expr.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Expr.hpp
re6cf857f r4ec9513 230 230 /// Creates a new assignment expression 231 231 static UntypedExpr * createAssign( const CodeLocation & loc, const Expr * lhs, const Expr * rhs ); 232 /// Creates a new call of a variable.233 static UntypedExpr * createCall( const CodeLocation & loc,234 const std::string & name, std::vector<ptr<Expr>> && args );235 232 236 233 const Expr * accept( Visitor & v ) const override { return v.visit( this ); } … … 787 784 public: 788 785 ptr<Expr> expr; 789 readonly<ObjectDecl> object;786 ptr<ObjectDecl> object; 790 787 ptr<VariableExpr> var; 791 788 unsigned long long id;
Note:
See TracChangeset
for help on using the changeset viewer.