Changeset 3007c0b
- Timestamp:
- Jul 12, 2018, 11:38:06 AM (6 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:
- d53772d
- Parents:
- 0fc52b6
- git-author:
- Rob Schluntz <rschlunt@…> (07/12/18 11:37:30)
- git-committer:
- Rob Schluntz <rschlunt@…> (07/12/18 11:38:06)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/parser.yy
r0fc52b6 r3007c0b 2294 2294 { $$ = new ExpressionNode( new TypeExpr( maybeMoveBuildType( $1 ) ) ); } 2295 2295 | assignment_expression 2296 { SemanticError( yylloc, toString("Expression generic parameters are currently unimplemented: ", $1->build()) ); $$ = nullptr; } 2296 2297 | type_list ',' type 2297 2298 { $$ = (ExpressionNode *)( $1->set_last( new ExpressionNode( new TypeExpr( maybeMoveBuildType( $3 ) ) ) ) ); } 2298 2299 | type_list ',' assignment_expression 2299 { $$ = (ExpressionNode *)( $1->set_last( $3 )); } 2300 { SemanticError( yylloc, toString("Expression generic parameters are currently unimplemented: ", $3->build()) ); $$ = nullptr; } 2301 // { $$ = (ExpressionNode *)( $1->set_last( $3 )); } 2300 2302 ; 2301 2303
Note: See TracChangeset
for help on using the changeset viewer.