- Timestamp:
- Mar 30, 2021, 6:55:13 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 1f652a7, c60ef639
- Parents:
- 98337569
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/parser.yy
r98337569 rca33b15 10 10 // Created On : Sat Sep 1 20:22:55 2001 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Mar 30 1 6:56:54202113 // Update Count : 49 5212 // Last Modified On : Tue Mar 30 18:39:23 2021 13 // Update Count : 4965 14 14 // 15 15 … … 1237 1237 { $$ = forCtrl( $3, $1, $3->clone(), $4, $5, $7 ); } 1238 1238 1239 | comma_expression ';' TYPEDEFname // CFA 1240 { SemanticError( yylloc, "Array interator is currently unimplemented." ); $$ = nullptr; } 1239 | comma_expression ';' TYPEDEFname // CFA, array type 1240 { 1241 SemanticError( yylloc, "Array interator is currently unimplemented." ); $$ = nullptr; 1242 $$ = forCtrl( new ExpressionNode( build_varref( $3 ) ), $1, nullptr, OperKinds::Range, nullptr, nullptr ); 1243 } 1241 1244 1242 1245 // There is a S/R conflicit if ~ and -~ are factored out.
Note: See TracChangeset
for help on using the changeset viewer.