Community
Participate
Working Groups
Build Identifier: Computation of offset has a bug *** current: int lineStart; try { lineStart = document.getLineOfOffset(command.offset); if (!document.get(lineStart, 3).equals("def")) { *** fixed: int line; int lineStart; try { line = document.getLineOfOffset(command.offset); lineStart = document.getLineOffset(line); if (!document.get(lineStart, 3).equals("def")) { Reproducible: Always
Created attachment 169197 [details] Patch
patch applied, thanks.
Closing bug which were set to RESOLVED before Eclipse Neon.0.