Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/parser.yy

    raeb5d0d rc744563a  
    1010// Created On       : Sat Sep  1 20:22:55 2001
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Feb 26 14:27:39 2020
    13 // Update Count     : 4472
     12// Last Modified On : Fri Feb 21 14:47:29 2020
     13// Update Count     : 4468
    1414//
    1515
     
    20772077aggregate_control:                                                                              // CFA
    20782078        GENERATOR
    2079                 { SemanticError( yylloc, "generator is currently unimplemented." ); $$ = AggregateDecl::NoAggregate; }
    2080         | MONITOR GENERATOR
    2081                 { SemanticError( yylloc, "monitor generator is currently unimplemented." ); $$ = AggregateDecl::NoAggregate; }
     2079                { yyy = true; $$ = AggregateDecl::Coroutine; }
    20822080        | COROUTINE
    20832081                { yyy = true; $$ = AggregateDecl::Coroutine; }
    20842082        | MONITOR
    20852083                { yyy = true; $$ = AggregateDecl::Monitor; }
    2086         | MONITOR COROUTINE
    2087                 { SemanticError( yylloc, "monitor coroutine is currently unimplemented." ); $$ = AggregateDecl::NoAggregate; }
    20882084        | THREAD
    20892085                { yyy = true; $$ = AggregateDecl::Thread; }
    2090         | MONITOR THREAD
    2091                 { SemanticError( yylloc, "monitor thread is currently unimplemented." ); $$ = AggregateDecl::NoAggregate; }
    20922086        ;
    20932087
Note: See TracChangeset for help on using the changeset viewer.