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.



3364
3365
3366
3367
3368
# File 'lib/syntax_tree/node.rb', line 3364

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



3362
3363
3364
# File 'lib/syntax_tree/node.rb', line 3362

def comments
  @comments
end

#valueObject (readonly)

String

the name of the class variable



3359
3360
3361
# File 'lib/syntax_tree/node.rb', line 3359

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



3370
3371
3372
# File 'lib/syntax_tree/node.rb', line 3370

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

#child_nodesObject Also known as: deconstruct



3374
3375
3376
# File 'lib/syntax_tree/node.rb', line 3374

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



3380
3381
3382
# File 'lib/syntax_tree/node.rb', line 3380

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

#format(q) ⇒ Object



3384
3385
3386
# File 'lib/syntax_tree/node.rb', line 3384

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