Forward references aren't validated #84
Labels
bug
Something isn't working
C-language
Issues regarding Pomsky's syntax
good first issue
Good for newcomers
Forward references can only appear within a repeated group that also contains the group the reference refers to. For example:
This is ok because both the reference
::third
and the referenced group:third()
are within thefirst
group, which is repeated.Describe the bug
Pomsky does not check that forward references fulfill the above criteria. Ruby allows forward references, but fails to compile when they're invalid, so this should be validated by Pomsky as well.
To Reproduce
Compile one of these with Pomsky using the
Ruby
flavor:then try to compile the result with Ruby.
Expected behavior
Since Ruby doesn't accept invalid forward references, Pomsky shouldn't either.
The text was updated successfully, but these errors were encountered: