Class: Aspen::AST::Nodes::Edge

Inherits:
Object
  • Object
show all
Defined in:
lib/aspen/ast/nodes/edge.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(content) ⇒ Edge

Returns a new instance of Edge.



8
9
10
# File 'lib/aspen/ast/nodes/edge.rb', line 8

def initialize(content)
  @content = Aspen::AST::Nodes::Content.new(content)
end

Instance Attribute Details

#contentObject (readonly)

Returns the value of attribute content.



6
7
8
# File 'lib/aspen/ast/nodes/edge.rb', line 6

def content
  @content
end