ppisl commented on a change in pull request #3316:
URL: https://github.com/apache/netbeans/pull/3316#discussion_r749305257



##########
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) {

Review comment:
       I wanted to be consistent with the rest of the code. Else this should be 
changed in more places, not only in my patch. 




-- 
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

Reply via email to