-
Notifications
You must be signed in to change notification settings - Fork 2
%wildcard
ksherlock edited this page Dec 19, 2015
·
1 revision
The %wildcard
directive specifies a wildcard token which matches any token which cannot otherwise be matched in the current context.
%wildcard ANY.
// checks for balanced parenthesis, doesn't care about the actual contents.
list ::= LPAREN any_list RPAREN.
any_list ::= ANY.
any_list ::= any_list ANY.