Class: SyntaxTree::TLamBeg
- Inherits:
-
Node
- Object
- Node
- SyntaxTree::TLamBeg
show all
- Defined in:
- lib/syntax_tree/node.rb
Overview
TLamBeg represents the beginning of the body of a lambda literal using braces.
-> { value }
In the example above the TLamBeg represents the { operator.
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
- String
-
the beginning of the body of the lambda literal.
Attributes inherited from Node
#location
Instance Method Summary
collapse
Methods inherited from Node
#construct_keys, #end_char, #format, #pretty_print, #start_char, #to_json, #to_mermaid
Constructor Details
#initialize(value:, location:) ⇒ TLamBeg
10786
10787
10788
10789
|
# File 'lib/syntax_tree/node.rb', line 10786
def initialize(value:, location:)
@value = value
@location = location
end
|
Instance Attribute Details
#value ⇒ Object
- String
-
the beginning of the body of the lambda literal
10784
10785
10786
|
# File 'lib/syntax_tree/node.rb', line 10784
def value
@value
end
|
Instance Method Details
#===(other) ⇒ Object
10812
10813
10814
|
# File 'lib/syntax_tree/node.rb', line 10812
def ===(other)
other.is_a?(TLamBeg) && value === other.value
end
|
#accept(visitor) ⇒ Object
10791
10792
10793
|
# File 'lib/syntax_tree/node.rb', line 10791
def accept(visitor)
visitor.visit_tlambeg(self)
end
|
#child_nodes ⇒ Object
Also known as:
deconstruct
10795
10796
10797
|
# File 'lib/syntax_tree/node.rb', line 10795
def child_nodes
[]
end
|
#copy(value: nil, location: nil) ⇒ Object
10799
10800
10801
10802
10803
10804
|
# File 'lib/syntax_tree/node.rb', line 10799
def copy(value: nil, location: nil)
TLamBeg.new(
value: value || self.value,
location: location || self.location
)
end
|
#deconstruct_keys(_keys) ⇒ Object
10808
10809
10810
|
# File 'lib/syntax_tree/node.rb', line 10808
def deconstruct_keys(_keys)
{ value: value, location: location }
end
|