Changeset 9867cdb for src/Parser
- Timestamp:
- Mar 7, 2020, 9:23:46 AM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- ff489bf
- Parents:
- 3d3cbd0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/parser.yy
r3d3cbd0 r9867cdb 10 10 // Created On : Sat Sep 1 20:22:55 2001 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Feb 26 14:27:39202013 // Update Count : 447 212 // Last Modified On : Fri Mar 6 17:26:45 2020 13 // Update Count : 4474 14 14 // 15 15 … … 918 918 conditional_expression 919 919 | unary_expression assignment_operator assignment_expression 920 { $$ = new ExpressionNode( build_binary_val( $2, $1, $3 ) ); } 920 { 921 if ( $2 == OperKinds::AtAssn ) { 922 SemanticError( yylloc, "C @= assignment is currently unimplemented." ); $$ = nullptr; 923 } else { 924 $$ = new ExpressionNode( build_binary_val( $2, $1, $3 ) ); 925 } // if 926 } 921 927 | unary_expression '=' '{' initializer_list_opt comma_opt '}' 922 928 { SemanticError( yylloc, "Initializer assignment is currently unimplemented." ); $$ = nullptr; }
Note: See TracChangeset
for help on using the changeset viewer.