Changeset 704d11e for src/Parser/TypeData.cc
- Timestamp:
- Jun 14, 2018, 5:35:09 PM (7 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, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- 47498bd
- Parents:
- c5d7701
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/TypeData.cc
rc5d7701 r704d11e 893 893 assert( td->kind == TypeData::Function ); 894 894 FunctionType * ft = new FunctionType( buildQualifiers( td ), ! td->function.params || td->function.params->hasEllipsis ); 895 buildList( td->function.params, ft-> get_parameters());896 buildForall( td->forall, ft-> get_forall());895 buildList( td->function.params, ft->parameters ); 896 buildForall( td->forall, ft->forall ); 897 897 if ( td->base ) { 898 898 switch ( td->base->kind ) { 899 899 case TypeData::Tuple: 900 buildList( td->base->tuple, ft-> get_returnVals());900 buildList( td->base->tuple, ft->returnVals ); 901 901 break; 902 902 default:
Note: See TracChangeset
for help on using the changeset viewer.