Class: SyntaxTree::Unary
Overview
Unary represents a unary method being called on an expression, as in ! or ~.
!value
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#operator ⇒ Object
readonly
- String
-
the operator being used.
-
#statement ⇒ Object
readonly
- Node
-
the statement on which to operate.
Attributes inherited from Node
Instance Method Summary collapse
- #===(other) ⇒ Object
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #copy(operator: nil, statement: nil, location: nil) ⇒ Object
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(operator:, statement:, location:) ⇒ Unary
constructor
A new instance of Unary.
Methods inherited from Node
#construct_keys, #end_char, #pretty_print, #start_char, #to_json, #to_mermaid
Constructor Details
#initialize(operator:, statement:, location:) ⇒ Unary
Returns a new instance of Unary.
11186 11187 11188 11189 11190 11191 |
# File 'lib/syntax_tree/node.rb', line 11186 def initialize(operator:, statement:, location:) @operator = operator @statement = statement @location = location @comments = [] end |
Instance Attribute Details
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
11184 11185 11186 |
# File 'lib/syntax_tree/node.rb', line 11184 def comments @comments end |
#operator ⇒ Object (readonly)
- String
-
the operator being used
11178 11179 11180 |
# File 'lib/syntax_tree/node.rb', line 11178 def operator @operator end |
#statement ⇒ Object (readonly)
- Node
-
the statement on which to operate
11181 11182 11183 |
# File 'lib/syntax_tree/node.rb', line 11181 def statement @statement end |
Instance Method Details
#===(other) ⇒ Object
11229 11230 11231 11232 |
# File 'lib/syntax_tree/node.rb', line 11229 def ===(other) other.is_a?(Unary) && operator === other.operator && statement === other.statement end |
#accept(visitor) ⇒ Object
11193 11194 11195 |
# File 'lib/syntax_tree/node.rb', line 11193 def accept(visitor) visitor.visit_unary(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
11197 11198 11199 |
# File 'lib/syntax_tree/node.rb', line 11197 def child_nodes [statement] end |
#copy(operator: nil, statement: nil, location: nil) ⇒ Object
11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 |
# File 'lib/syntax_tree/node.rb', line 11201 def copy(operator: nil, statement: nil, location: nil) node = Unary.new( operator: operator || self.operator, statement: statement || self.statement, location: location || self.location ) node.comments.concat(comments.map(&:copy)) node end |
#deconstruct_keys(_keys) ⇒ Object
11215 11216 11217 11218 11219 11220 11221 11222 |
# File 'lib/syntax_tree/node.rb', line 11215 def deconstruct_keys(_keys) { operator: operator, statement: statement, location: location, comments: comments } end |
#format(q) ⇒ Object
11224 11225 11226 11227 |
# File 'lib/syntax_tree/node.rb', line 11224 def format(q) q.text(operator) q.format(statement) end |