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
- untyped
-
the statement on which to operate.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(operator:, statement:, location:, comments: []) ⇒ Unary
constructor
A new instance of Unary.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(operator:, statement:, location:, comments: []) ⇒ Unary
Returns a new instance of Unary.
9060 9061 9062 9063 9064 9065 |
# File 'lib/syntax_tree/node.rb', line 9060 def initialize(operator:, statement:, location:, comments: []) @operator = operator @statement = statement @location = location @comments = comments end |
Instance Attribute Details
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
9058 9059 9060 |
# File 'lib/syntax_tree/node.rb', line 9058 def comments @comments end |
#operator ⇒ Object (readonly)
- String
-
the operator being used
9052 9053 9054 |
# File 'lib/syntax_tree/node.rb', line 9052 def operator @operator end |
#statement ⇒ Object (readonly)
- untyped
-
the statement on which to operate
9055 9056 9057 |
# File 'lib/syntax_tree/node.rb', line 9055 def statement @statement end |
Instance Method Details
#accept(visitor) ⇒ Object
9067 9068 9069 |
# File 'lib/syntax_tree/node.rb', line 9067 def accept(visitor) visitor.visit_unary(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
9071 9072 9073 |
# File 'lib/syntax_tree/node.rb', line 9071 def child_nodes [statement] end |
#deconstruct_keys(_keys) ⇒ Object
9077 9078 9079 9080 9081 9082 9083 9084 |
# File 'lib/syntax_tree/node.rb', line 9077 def deconstruct_keys(_keys) { operator: operator, statement: statement, location: location, comments: comments } end |
#format(q) ⇒ Object
9086 9087 9088 9089 |
# File 'lib/syntax_tree/node.rb', line 9086 def format(q) q.text(operator) q.format(statement) end |