Class: RBS::Environment::MultiEntry
- Inherits:
-
Object
- Object
- RBS::Environment::MultiEntry
- Defined in:
- lib/rbs/environment.rb
Direct Known Subclasses
Constant Summary collapse
- D =
_ = Struct.new(:decl, :outer, keyword_init: true) do include ContextUtil end
Instance Attribute Summary collapse
-
#decls ⇒ Object
readonly
Returns the value of attribute decls.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name:) ⇒ MultiEntry
constructor
A new instance of MultiEntry.
- #insert(decl:, outer:) ⇒ Object
- #primary ⇒ Object
- #type_params ⇒ Object
- #validate_type_params ⇒ Object
Constructor Details
#initialize(name:) ⇒ MultiEntry
Returns a new instance of MultiEntry.
31 32 33 34 |
# File 'lib/rbs/environment.rb', line 31 def initialize(name:) @name = name @decls = [] end |
Instance Attribute Details
#decls ⇒ Object (readonly)
Returns the value of attribute decls.
29 30 31 |
# File 'lib/rbs/environment.rb', line 29 def decls @decls end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
28 29 30 |
# File 'lib/rbs/environment.rb', line 28 def name @name end |
Instance Method Details
#insert(decl:, outer:) ⇒ Object
36 37 38 39 |
# File 'lib/rbs/environment.rb', line 36 def insert(decl:, outer:) decls << D.new(decl: decl, outer: outer) @primary = nil end |
#primary ⇒ Object
63 64 65 |
# File 'lib/rbs/environment.rb', line 63 def primary raise "Not implemented" end |
#type_params ⇒ Object
59 60 61 |
# File 'lib/rbs/environment.rb', line 59 def type_params primary.decl.type_params end |
#validate_type_params ⇒ Object
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/rbs/environment.rb', line 41 def validate_type_params unless decls.empty? hd_decl, *tl_decls = decls raise unless hd_decl hd_params = hd_decl.decl.type_params hd_names = hd_params.params.map(&:name) tl_decls.each do |tl_decl| tl_params = tl_decl.decl.type_params unless hd_params.size == tl_params.size && hd_params == tl_params.rename_to(hd_names) raise GenericParameterMismatchError.new(name: name, decl: tl_decl.decl) end end end end |