Skip to content

Commit

Permalink
Parse several special variable (like $, $! etc...)
Browse files Browse the repository at this point in the history
Signed-off-by: Ted Reed <ted.reed@gmail.com>
  • Loading branch information
joeri authored and treed committed Jul 31, 2009
1 parent eca2172 commit 275c208
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/parser/grammar.pg
Expand Up @@ -387,7 +387,12 @@ token module_identifier {
}

token global {
'$' <ident>
'$' [
| <ident>
| <[!@&`'+~=/\\,;.<>_*$?:"] >
| <digit>+
| '-'<[0adFiIlpvw]>
]
{*}
}

Expand Down

0 comments on commit 275c208

Please sign in to comment.