Comment out SCOPE parsing for now

This commit is contained in:
Randy Heit 2015-06-13 18:19:38 -05:00
parent 245a46735d
commit 1482070207
1 changed files with 2 additions and 1 deletions

View File

@ -850,12 +850,13 @@ primary(X) ::= primary(A) SUBSUB. /* postfix-- */
UNARY_EXPR(A,PEX_PostDec);
X = expr1;
}
/*
primary(X) ::= SCOPE primary(B).
{
BINARY_EXPR(NULL,B,PEX_Scope);
X = expr2;
}
*/
/*----- Unary Expressions -----*/
unary_expr(X) ::= primary(A).