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 127415 - Code completion does not pick up class methods defined as attribute accessors
Summary: Code completion does not pick up class methods defined as attribute accessors
Status: NEW
Alias: None
Product: ruby
Classification: Unclassified
Component: Code Completion (show other bugs)
Version: 6.x
Hardware: Macintosh Mac OS X
: P2 blocker (vote)
Assignee: issues@ruby
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-02-14 17:25 UTC by Gregory Murphy
Modified: 2011-01-28 20:11 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Gregory Murphy 2008-02-14 17:25:44 UTC
Using dev build 200802080008.

In a new Ruby file, define the following class:

    class Foo

      class << self
        attr_accessor :foo_1

        def foo_2
        end
      end

      def self.foo_3
      end
    end

When I type "Foo." and wait for the code completion window, I see 'foo_2' and 'foo_3' as options, but not "foo_1".