computeContentAssist() with preceding input #1927
-
I have a grammar that allow for expressions such as this:
Having parsed
...fully expecting it to include The other suggestions are correct, but some possibilities are missing. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The content assist will provide you will all tokens that might appear after the last given token. Since your input allows |
Beta Was this translation helpful? Give feedback.
The content assist will provide you will all tokens that might appear after the last given token. Since your input allows
1 + 2 > 3 + [some.variable]
, the content assist should provide you with+
after1 + 2 > 3
. Not returning[
seems to be the expected behavior. Also is" + "
actually a rule name of your grammar?