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
Constructor Details
#initialize(value:, location:, comments: []) ⇒ Defined
Returns a new instance of Defined.
3144 3145 3146 3147 3148 |
# File 'lib/syntax_tree/node.rb', line 3144 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
3142 3143 3144 |
# File 'lib/syntax_tree/node.rb', line 3142 def comments @comments end |
#value ⇒ Object (readonly)
- untyped
-
the value being sent to the keyword
3139 3140 3141 |
# File 'lib/syntax_tree/node.rb', line 3139 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
3150 3151 3152 |
# File 'lib/syntax_tree/node.rb', line 3150 def accept(visitor) visitor.visit_defined(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
3154 3155 3156 |
# File 'lib/syntax_tree/node.rb', line 3154 def child_nodes [value] end |
#deconstruct_keys(keys) ⇒ Object
3160 3161 3162 |
# File 'lib/syntax_tree/node.rb', line 3160 def deconstruct_keys(keys) { value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
3164 3165 3166 3167 3168 3169 3170 3171 3172 |
# File 'lib/syntax_tree/node.rb', line 3164 def format(q) q.group(0, "defined?(", ")") do q.indent do q.breakable("") q.format(value) end q.breakable("") end end |