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

Content assist does not work for common prefix rules #1370

Open
cdietrich opened this issue Feb 5, 2024 · 0 comments
Open

Content assist does not work for common prefix rules #1370

cdietrich opened this issue Feb 5, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@cdietrich
Copy link
Contributor

given the grammar

entry Model:
    (persons+=Person | greetings+=Greeting)*;

Person:
    'person' name=ID;

Greeting:
    GreetingByName | GreetingByAlias;


GreetingByName: 
    'hello' person=[Person:ID];

GreetingByAlias:
    'hello' alias=ID (':' data=PersonRef ('{'
        
    '}')?);

PersonRef:
    person=[Person:ID];

content assist does not work at

person Aaaaa

hello a : |

not at

person Aaaaa

hello a : A|
@cdietrich cdietrich added the bug Something isn't working label Feb 5, 2024
@cdietrich cdietrich changed the title Content assist does not Content assist does not work for common prefix rules Feb 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant