Changeset bd9bcc8 for src/SynTree/Declaration.h
- Timestamp:
- Feb 20, 2017, 12:05:49 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 3bff885
- Parents:
- facc44f (diff), d150ea2 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
src/SynTree/Declaration.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Declaration.h
rfacc44f rbd9bcc8 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Feb 9 14:27:08201713 // Update Count : 5 612 // Last Modified On : Thu Feb 16 14:53:35 2017 13 // Update Count : 57 14 14 // 15 15 … … 140 140 CompoundStmt *get_statements() const { return statements; } 141 141 void set_statements( CompoundStmt *newValue ) { statements = newValue; } 142 std::list< std::string >& get_oldIdents() { return oldIdents; }143 std::list< Declaration* >& get_oldDecls() { return oldDecls; }144 142 145 143 virtual FunctionDecl *clone() const { return new FunctionDecl( *this ); } … … 151 149 FunctionType *type; 152 150 CompoundStmt *statements; 153 std::list< std::string > oldIdents;154 std::list< Declaration* > oldDecls;155 151 }; 156 152
Note:
See TracChangeset
for help on using the changeset viewer.