Class: SyntaxTree::CVar

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

Overview

CVar represents the use of a class variable.

@@variable

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#construct_keys, #pretty_print, #to_json

Constructor Details

#initialize(value:, location:, comments: []) ⇒ CVar

Returns a new instance of CVar.



3331
3332
3333
3334
3335
# File 'lib/syntax_tree/node.rb', line 3331

def initialize(value:, location:, comments: [])
  @value = value
  @location = location
  @comments = comments
end

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



3329
3330
3331
# File 'lib/syntax_tree/node.rb', line 3329

def comments
  @comments
end

#valueObject (readonly)

String

the name of the class variable



3326
3327
3328
# File 'lib/syntax_tree/node.rb', line 3326

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



3337
3338
3339
# File 'lib/syntax_tree/node.rb', line 3337

def accept(visitor)
  visitor.visit_cvar(self)
end

#child_nodesObject Also known as: deconstruct



3341
3342
3343
# File 'lib/syntax_tree/node.rb', line 3341

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



3347
3348
3349
# File 'lib/syntax_tree/node.rb', line 3347

def deconstruct_keys(_keys)
  { value: value, location: location, comments: comments }
end

#format(q) ⇒ Object



3351
3352
3353
# File 'lib/syntax_tree/node.rb', line 3351

def format(q)
  q.text(value)
end