Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Code Generator rule "alias" generates stack overflow/error. #11

Open
LesBarstow opened this issue Jun 29, 2021 · 0 comments
Open

Code Generator rule "alias" generates stack overflow/error. #11

LesBarstow opened this issue Jun 29, 2021 · 0 comments

Comments

@LesBarstow
Copy link

LesBarstow commented Jun 29, 2021

When a rule is simply equal to another rule, the generated rule returns itself instead of the other rule.

rule-a = ALPHA / DIGIT
rule-b = rule-a
// rule-a = ALPHA / DIGIT
func RuleA() operators.Operator {
    return operators.Alts(
        "rule-a",
        core.ALPHA(),
        core.DIGIT(),
    )
}
// rule-b = rule-a
func RuleB() operators.Operator {
    return RuleB()  // NOTE - ERROR HERE - should be RuleA
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant