Class: Jazzy::SymbolGraph::ExtConstraints

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(type_constraints, ext_constraints) ⇒ ExtConstraints

Returns a new instance of ExtConstraints.



16
17
18
19
# File 'lib/jazzy/symbol_graph/ext_node.rb', line 16

def initialize(type_constraints, ext_constraints)
  self.type = type_constraints || []
  self.ext = ext_constraints || []
end

Instance Attribute Details

#extObject

array



9
10
11
# File 'lib/jazzy/symbol_graph/ext_node.rb', line 9

def ext
  @ext
end

#typeObject

array



8
9
10
# File 'lib/jazzy/symbol_graph/ext_node.rb', line 8

def type
  @type
end

Instance Method Details

#mergedObject

all constraints inherited by members of the extension



12
13
14
# File 'lib/jazzy/symbol_graph/ext_node.rb', line 12

def merged
  (type + ext).sort
end