Changeset 0b0a285 for src/Parser/parser.yy
- Timestamp:
- Jun 21, 2023, 2:38:44 AM (20 months ago)
- Branches:
- master
- Children:
- c84dd61
- Parents:
- fec8bd1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/parser.yy
rfec8bd1 r0b0a285 3848 3848 // { SemanticError( yylloc, "New array dimension is currently unimplemented." ); $$ = nullptr; } 3849 3849 | '[' push array_type_list pop ']' // CFA 3850 { SemanticError( yylloc, "Type array dimension is currently unimplemented." ); $$ = nullptr; }3850 { $$ = DeclarationNode::newArray( $3, nullptr, false ); } 3851 3851 | multi_array_dimension 3852 3852 ;
Note: See TracChangeset
for help on using the changeset viewer.