Class: SyntaxTree::Defined
Overview
Defined represents the use of the defined? operator. It can be used with and without parentheses.
defined?(variable)
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#value ⇒ Object
readonly
- untyped
-
the value being sent to the keyword.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(value:, location:, comments: []) ⇒ Defined
constructor
A new instance of Defined.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:, comments: []) ⇒ Defined
Returns a new instance of Defined.
3560 3561 3562 3563 3564 |
# File 'lib/syntax_tree/node.rb', line 3560 def initialize(value:, location:, comments: []) @value = value @location = location @comments = comments end |
Instance Attribute Details
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
3558 3559 3560 |
# File 'lib/syntax_tree/node.rb', line 3558 def comments @comments end |
#value ⇒ Object (readonly)
- untyped
-
the value being sent to the keyword
3555 3556 3557 |
# File 'lib/syntax_tree/node.rb', line 3555 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
3566 3567 3568 |
# File 'lib/syntax_tree/node.rb', line 3566 def accept(visitor) visitor.visit_defined(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
3570 3571 3572 |
# File 'lib/syntax_tree/node.rb', line 3570 def child_nodes [value] end |
#deconstruct_keys(_keys) ⇒ Object
3576 3577 3578 |
# File 'lib/syntax_tree/node.rb', line 3576 def deconstruct_keys(_keys) { value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
3580 3581 3582 3583 3584 3585 3586 3587 3588 |
# File 'lib/syntax_tree/node.rb', line 3580 def format(q) q.group(0, "defined?(", ")") do q.indent do q.breakable("") q.format(value) end q.breakable("") end end |