Changes in / [7dc2e015:930b504]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/parser.yy
r7dc2e015 r930b504 10 10 // Created On : Sat Sep 1 20:22:55 2001 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Feb 21 14:47:29 202013 // Update Count : 44 6812 // Last Modified On : Wed Feb 26 14:27:39 2020 13 // Update Count : 4472 14 14 // 15 15 … … 2077 2077 aggregate_control: // CFA 2078 2078 GENERATOR 2079 { yyy = true; $$ = AggregateDecl::Coroutine; } 2079 { SemanticError( yylloc, "generator is currently unimplemented." ); $$ = AggregateDecl::NoAggregate; } 2080 | MONITOR GENERATOR 2081 { SemanticError( yylloc, "monitor generator is currently unimplemented." ); $$ = AggregateDecl::NoAggregate; } 2080 2082 | COROUTINE 2081 2083 { yyy = true; $$ = AggregateDecl::Coroutine; } 2082 2084 | MONITOR 2083 2085 { yyy = true; $$ = AggregateDecl::Monitor; } 2086 | MONITOR COROUTINE 2087 { SemanticError( yylloc, "monitor coroutine is currently unimplemented." ); $$ = AggregateDecl::NoAggregate; } 2084 2088 | THREAD 2085 2089 { yyy = true; $$ = AggregateDecl::Thread; } 2090 | MONITOR THREAD 2091 { SemanticError( yylloc, "monitor thread is currently unimplemented." ); $$ = AggregateDecl::NoAggregate; } 2086 2092 ; 2087 2093
Note: See TracChangeset
for help on using the changeset viewer.