Domanda

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?

È stato utile?

Soluzione

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).

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top