eclipse / xtext

Eclipse Xtext™ is a language development framework
http://www.eclipse.org/Xtext
Eclipse Public License 2.0
766 stars 320 forks source link

[contentassist] missing proposals #2557

Open meysholdt opened 6 years ago

meysholdt commented 6 years ago

given the grammar

Model:
    greetings+=Greeting*;

Greeting:
    {Greeting} "{" ass1+=Item1* ass2+=Item2* "}";

Item1:
    name=FQN "item1";

Item2:
    (name=FQN "item2") | ("pref" name=FQN);

FQN:
    ID ("." ID)*;

and the model {| with | being the cursor, the keyword pref should be among the proposals.

szarnekow commented 6 years ago

@meysholdt do you have plans to work on this?

meysholdt commented 6 years ago

for now: no, as the problem I was hunting had another cause.

szarnekow commented 6 years ago

Ok, thanks for the quick update.