Skip to content

include should include #138

@kwerle

Description

@kwerle

When you include a module then the things in that module should be in scope for completion.

For example:

module Foo
  def foo_method
  end
end

class Bar
  include Foo

  def bar_method
    foo # if completion runs here then it should find the foo_method because Foo was included into Bar
  end
end

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions