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.



2950
2951
2952
2953
2954
# File 'lib/syntax_tree/node.rb', line 2950

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



2948
2949
2950
# File 'lib/syntax_tree/node.rb', line 2948

def comments
  @comments
end

#valueObject (readonly)

String

the name of the class variable



2945
2946
2947
# File 'lib/syntax_tree/node.rb', line 2945

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



2956
2957
2958
# File 'lib/syntax_tree/node.rb', line 2956

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

#child_nodesObject Also known as: deconstruct



2960
2961
2962
# File 'lib/syntax_tree/node.rb', line 2960

def child_nodes
  []
end

#deconstruct_keys(keys) ⇒ Object



2966
2967
2968
# File 'lib/syntax_tree/node.rb', line 2966

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

#format(q) ⇒ Object



2970
2971
2972
# File 'lib/syntax_tree/node.rb', line 2970

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