Skip to content
Snippets Groups Projects
Commit 49cc2937 authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1999-12-09 16:45:57 by simonmar]

allow certain keywords as scc labels.
parent b7c838d7
No related merge requests found
......@@ -469,7 +469,6 @@ mod_name :: { ModuleName }
---------------------------------------------------
var_fs :: { EncodedFS }
: VARID { $1 }
| VARSYM { $1 }
| '!' { SLIT("!") }
| 'as' { SLIT("as") }
| 'qualified' { SLIT("qualified") }
......@@ -793,7 +792,7 @@ scc :: { CostCentre }
cc_name :: { EncodedFS }
: CONID { $1 }
| VARID { $1 }
| var_fs { $1 }
cc_dup :: { IsDupdCC }
cc_dup : { OriginalCC }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment