This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 142379 - Mark occurrences - highlighting end of tokens doesn't work correctly
Summary: Mark occurrences - highlighting end of tokens doesn't work correctly
Status: RESOLVED DUPLICATE of bug 155574
Alias: None
Product: groovy
Classification: Unclassified
Component: Editor (show other bugs)
Version: 6.x
Hardware: All All
: P4 blocker (vote)
Assignee: Martin Janicek
URL:
Keywords:
Depends on:
Blocks: 142032
  Show dependency tree
 
Reported: 2008-07-31 11:03 UTC by Lukas Jungmann
Modified: 2012-02-21 14:27 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
screenshot (99.08 KB, image/png)
2008-07-31 11:04 UTC, Lukas Jungmann
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Lukas Jungmann 2008-07-31 11:03:17 UTC
package sample

class Greeter {

    def sss
    Greeter(who) {
         sss   = who[0].toUpperCase() + who[1..-1]
    }
    def salute() {
        println "Hello $sss  !"
    }

    List<Greeter> testClass(List<Greeter> s) {
        List<Greeter> a = new ArrayList<Greeter>()
        Greeter|
        a.add(new Greeter("Matthias"))
        a.add
        a
    }
}

=> see attached screenshot
Comment 1 Lukas Jungmann 2008-07-31 11:04:02 UTC
Created attachment 66152 [details]
screenshot
Comment 2 martin_adamek 2008-08-14 17:22:29 UTC
Original issue is fixed, but now identifier is not highlighted if cursor is here: Greeter|. That works in Java, so I guess, I'need to fix it.
Comment 3 Martin Janicek 2012-02-21 14:27:07 UTC

*** This bug has been marked as a duplicate of bug 155574 ***