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.



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

#extObject

array



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

def ext
  @ext
end

#typeObject

array



6
7
8
# File 'lib/jazzy/symbol_graph/ext_node.rb', line 6

def type
  @type
end

Instance Method Details

#mergedObject

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