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

#pretty_print, #to_json

Constructor Details

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

Returns a new instance of CVar.



3298
3299
3300
3301
3302
# File 'lib/syntax_tree/node.rb', line 3298

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



3296
3297
3298
# File 'lib/syntax_tree/node.rb', line 3296

def comments
  @comments
end

#valueObject (readonly)

String

the name of the class variable



3293
3294
3295
# File 'lib/syntax_tree/node.rb', line 3293

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



3304
3305
3306
# File 'lib/syntax_tree/node.rb', line 3304

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

#child_nodesObject Also known as: deconstruct



3308
3309
3310
# File 'lib/syntax_tree/node.rb', line 3308

def child_nodes
  []
end

#deconstruct_keys(keys) ⇒ Object



3314
3315
3316
# File 'lib/syntax_tree/node.rb', line 3314

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

#format(q) ⇒ Object



3318
3319
3320
# File 'lib/syntax_tree/node.rb', line 3318

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