Class: Jazzy::SymbolGraph::ExtConstraints
- Inherits:
-
Object
- Object
- Jazzy::SymbolGraph::ExtConstraints
- Defined in:
- lib/jazzy/symbol_graph/ext_node.rb
Overview
For extensions we need to track constraints of the extended type and the constraints introduced by the extension.
Instance Attribute Summary collapse
-
#ext ⇒ Object
array.
-
#type ⇒ Object
array.
Instance Method Summary collapse
-
#initialize(type_constraints, ext_constraints) ⇒ ExtConstraints
constructor
A new instance of ExtConstraints.
-
#merged ⇒ Object
all constraints inherited by members of the extension.
Constructor Details
#initialize(type_constraints, ext_constraints) ⇒ ExtConstraints
Returns a new instance of ExtConstraints.
14 15 16 17 |
# File 'lib/jazzy/symbol_graph/ext_node.rb', line 14 def initialize(type_constraints, ext_constraints) self.type = type_constraints || [] self.ext = ext_constraints || [] end |
Instance Attribute Details
#ext ⇒ Object
array
7 8 9 |
# File 'lib/jazzy/symbol_graph/ext_node.rb', line 7 def ext @ext end |
#type ⇒ Object
array
6 7 8 |
# File 'lib/jazzy/symbol_graph/ext_node.rb', line 6 def type @type end |
Instance Method Details
#merged ⇒ Object
all constraints inherited by members of the extension
10 11 12 |
# File 'lib/jazzy/symbol_graph/ext_node.rb', line 10 def merged (type + ext).sort end |