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 158893 - Mark Occurrences at function definition
Summary: Mark Occurrences at function definition
Status: NEW
Alias: None
Product: ruby
Classification: Unclassified
Component: Editing (show other bugs)
Version: 6.x
Hardware: All All
: P4 blocker (vote)
Assignee: issues@ruby
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-02-20 12:57 UTC by Martin Schovanek
Modified: 2011-01-28 20:13 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Martin Schovanek 2009-02-20 12:57:34 UTC
[#200902181412 M2 build, jdk1.5.0]

to reproduce:
-------------
1) type in a .rb file (| represents cursor):
  def f|n()
    for i in 0..10 
      puts i
      fn()
    end
  end

ERROR: Mark Occurrences highlights the 'for i in 0..10' statement instead of 'fn()'