Class: SyntaxTree::Unary

Inherits:
Node
  • Object
show all
Defined in:
lib/syntax_tree/node.rb

Overview

Unary represents a unary method being called on an expression, as in ! or ~.

!value

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

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

#commentsObject (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

#operatorObject (readonly)

String

the operator being used



11178
11179
11180
# File 'lib/syntax_tree/node.rb', line 11178

def operator
  @operator
end

#statementObject (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_nodesObject 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