Changeset 63afee0 for src/Parser
- Timestamp:
- Nov 20, 2015, 10:32:05 AM (10 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
- Children:
- 66a2a61
- Parents:
- f066321 (diff), 258eb5c9 (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/Parser/TypeData.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/TypeData.cc
rf066321 r63afee0 799 799 case DeclarationNode::Struct: 800 800 at = new StructDecl( aggregate->name ); 801 buildForall( aggregate->params, at->get_parameters() ); 801 802 break; 802 803 case DeclarationNode::Union: 803 804 at = new UnionDecl( aggregate->name ); 805 buildForall( aggregate->params, at->get_parameters() ); 804 806 break; 805 807 case DeclarationNode::Context: 806 808 at = new ContextDecl( aggregate->name ); 809 buildList( aggregate->params, at->get_parameters() ); 807 810 break; 808 811 default: 809 812 assert( false ); 810 813 } // switch 811 buildList( aggregate->params, at->get_parameters() );814 // buildList( aggregate->params, at->get_parameters() ); 812 815 buildList( aggregate->fields, at->get_members() ); 813 816
Note:
See TracChangeset
for help on using the changeset viewer.