Question

It seems that in Rascal a syntax declaration must come before a data declaration. Is that true? My experience is that if I put a syntax declaration after a data declaration, I got a parse error. Why is it a parse error?

Was it helpful?

Solution

Yes. Syntax declarations must come first in the file.

The reasoning is (I believe) that it should be simple to extract the grammar needed to parse the rest of the file.

You can of course always work around this if necessary by putting your type declarations in a separate file (probably only necessary if you need to add weirdo annotations to your grammar productions).

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top