sdedic commented on a change in pull request #3316:
URL: https://github.com/apache/netbeans/pull/3316#discussion_r749330498
##########
File path:
groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/completion/KeywordCompletion.java
##########
@@ -98,6 +110,27 @@ public boolean complete(Map<Object, CompletionProposal>
proposals, CompletionCon
return true;
}
+ boolean isFirstStatement(final CompletionContext request) {
+ TokenSequence<GroovyTokenId> ts =
LexUtilities.getGroovyTokenSequence(request.doc, 1);
+
+ if (ts != null) {
+ ts.move(request.lexOffset);
+ if (ts.movePrevious()) {
+ while (ts.isValid() && ts.movePrevious() && ts.offset() >= 0) {
+ Token<GroovyTokenId> t = ts.token();
+ if (!(t.id() == GroovyTokenId.NLS || t.id() ==
GroovyTokenId.WHITESPACE
Review comment:
perhaps yes, but a possible retrofit of other code (that should use the
helper instead of custom WS token checks) should be perhaps done separately.
Your call.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists