Changeset 58d246a for src/SynTree
- Timestamp:
- Mar 24, 2017, 4:31:09 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:
- 6d48157, cb4d825
- Parents:
- 231f01c (diff), f20dffa (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. - Location:
- src/SynTree
- Files:
-
- 2 edited
-
Initializer.h (modified) (2 diffs)
-
Type.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Initializer.h
r231f01c r58d246a 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Rob Schluntz12 // Last Modified On : T ue Apr 12 13:49:13 201613 // Update Count : 1911 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Mar 23 16:12:42 2017 13 // Update Count : 20 14 14 // 15 15 … … 70 70 void set_value( Expression *newValue ) { value = newValue; } 71 71 72 std::list<Expression *> &get_designators() { return designators; } 72 73 void set_designators( std::list<Expression *> &newValue ) { designators = newValue; } 73 std::list<Expression *> &get_designators() { return designators; }74 74 75 75 virtual SingleInit *clone() const { return new SingleInit( *this); } -
src/SynTree/Type.h
r231f01c r58d246a 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Mar 17 09:04:03201713 // Update Count : 14 712 // Last Modified On : Thu Mar 23 16:16:36 2017 13 // Update Count : 149 14 14 // 15 15 … … 331 331 virtual Type *acceptMutator( Mutator & m ) = 0; 332 332 virtual void print( std::ostream & os, int indent = 0 ) const; 333 334 virtual void lookup( const std::string & name, std::list< Declaration* > & foundDecls ) const {} 333 335 protected: 334 336 virtual std::string typeString() const = 0;
Note:
See TracChangeset
for help on using the changeset viewer.