Closed ianh closed 6 years ago
The grammar
a = identifier@return
won't compile because return is a C keyword.
return
We need to reserve all the C keywords, along with range and type (because these conflict with built-in fields).
range
type
Yup, I just ran into this with for, switch, while, and if. (I just renamed them to for_block, while_block, etc.)
for
switch
while
if
for_block
while_block
Should be fixed with 9d8d70c.
The grammar
won't compile because
return
is a C keyword.We need to reserve all the C keywords, along with
range
andtype
(because these conflict with built-in fields).