- Renamed FxSequence to FxCompoundStatement.
- fixed: The state parser was unable to accept empty anonymous functions, which should be treated as if there is none at all.
This commit is contained in:
parent
458c68775f
commit
8a6230d64a
5 changed files with 17 additions and 13 deletions
|
|
@ -528,6 +528,10 @@ state_action(X) ::= LBRACE(T) statement_list(A) scanner_mode RBRACE.
|
|||
stmt->Content = A;
|
||||
X = stmt;
|
||||
}
|
||||
state_action(X) ::= LBRACE scanner_mode RBRACE.
|
||||
{
|
||||
X = NULL;
|
||||
}
|
||||
state_action(X) ::= LBRACE error scanner_mode RBRACE. { X = NULL; }
|
||||
state_action(X) ::= state_call(A) scanner_mode SEMICOLON. { X = A; /*X-overwrites-A*/ }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue