Class: SyntaxTree::VoidStmt
Overview
VoidStmt represents an empty lexical block of code.
;;
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#location ⇒ Object
readonly
- Location
-
the location of this node.
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(location:, comments: []) ⇒ VoidStmt
constructor
A new instance of VoidStmt.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(location:, comments: []) ⇒ VoidStmt
Returns a new instance of VoidStmt.
9652 9653 9654 9655 |
# File 'lib/syntax_tree/node.rb', line 9652 def initialize(location:, comments: []) @location = location @comments = comments end |
Instance Attribute Details
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
9650 9651 9652 |
# File 'lib/syntax_tree/node.rb', line 9650 def comments @comments end |
#location ⇒ Object (readonly)
- Location
-
the location of this node
9647 9648 9649 |
# File 'lib/syntax_tree/node.rb', line 9647 def location @location end |
Instance Method Details
#accept(visitor) ⇒ Object
9657 9658 9659 |
# File 'lib/syntax_tree/node.rb', line 9657 def accept(visitor) visitor.visit_void_stmt(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
9661 9662 9663 |
# File 'lib/syntax_tree/node.rb', line 9661 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
9667 9668 9669 |
# File 'lib/syntax_tree/node.rb', line 9667 def deconstruct_keys(_keys) { location: location, comments: comments } end |
#format(q) ⇒ Object
9671 9672 |
# File 'lib/syntax_tree/node.rb', line 9671 def format(q) end |