Class: RBS::Environment::SingleEntry

Inherits:
Object
  • Object
show all
Includes:
ContextUtil
Defined in:
lib/rbs/environment.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from ContextUtil

#calculate_context

Constructor Details

#initialize(name:, decl:, outer:) ⇒ SingleEntry

Returns a new instance of SingleEntry.



114
115
116
117
118
# File 'lib/rbs/environment.rb', line 114

def initialize(name:, decl:, outer:)
  @name = name
  @decl = decl
  @outer = outer
end

Instance Attribute Details

#declObject (readonly)

Returns the value of attribute decl.



112
113
114
# File 'lib/rbs/environment.rb', line 112

def decl
  @decl
end

#nameObject (readonly)

Returns the value of attribute name.



110
111
112
# File 'lib/rbs/environment.rb', line 110

def name
  @name
end

#outerObject (readonly)

Returns the value of attribute outer.



111
112
113
# File 'lib/rbs/environment.rb', line 111

def outer
  @outer
end

Instance Method Details

#contextObject



122
123
124
# File 'lib/rbs/environment.rb', line 122

def context
  @context ||= calculate_context(outer)
end