Class: RBS::Environment::SingleEntry
- Inherits:
-
Object
- Object
- RBS::Environment::SingleEntry
- Includes:
- ContextUtil
- Defined in:
- lib/rbs/environment.rb
Instance Attribute Summary collapse
-
#decl ⇒ Object
readonly
Returns the value of attribute decl.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#outer ⇒ Object
readonly
Returns the value of attribute outer.
Instance Method Summary collapse
-
#initialize(name:, decl:, outer:) ⇒ SingleEntry
constructor
A new instance of SingleEntry.
Methods included from ContextUtil
Constructor Details
#initialize(name:, decl:, outer:) ⇒ SingleEntry
Returns a new instance of SingleEntry.
99 100 101 102 103 |
# File 'lib/rbs/environment.rb', line 99 def initialize(name:, decl:, outer:) @name = name @decl = decl @outer = outer end |
Instance Attribute Details
#decl ⇒ Object (readonly)
Returns the value of attribute decl.
97 98 99 |
# File 'lib/rbs/environment.rb', line 97 def decl @decl end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
95 96 97 |
# File 'lib/rbs/environment.rb', line 95 def name @name end |
#outer ⇒ Object (readonly)
Returns the value of attribute outer.
96 97 98 |
# File 'lib/rbs/environment.rb', line 96 def outer @outer end |