Class: SyntaxTree::ConstPathField

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

Overview

ConstPathField represents the child node of some kind of assignment. It represents when you’re assigning to a constant that is being referenced as a child of another variable.

object::Const = value

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(parent:, constant:, location:, comments: []) ⇒ ConstPathField

Returns a new instance of ConstPathField.



3235
3236
3237
3238
3239
3240
# File 'lib/syntax_tree/node.rb', line 3235

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

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



3233
3234
3235
# File 'lib/syntax_tree/node.rb', line 3233

def comments
  @comments
end

#constantObject (readonly)

Const

the constant itself



3230
3231
3232
# File 'lib/syntax_tree/node.rb', line 3230

def constant
  @constant
end

#parentObject (readonly)

untyped

the source of the constant



3227
3228
3229
# File 'lib/syntax_tree/node.rb', line 3227

def parent
  @parent
end

Instance Method Details

#accept(visitor) ⇒ Object



3242
3243
3244
# File 'lib/syntax_tree/node.rb', line 3242

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

#child_nodesObject Also known as: deconstruct



3246
3247
3248
# File 'lib/syntax_tree/node.rb', line 3246

def child_nodes
  [parent, constant]
end

#deconstruct_keys(_keys) ⇒ Object



3252
3253
3254
3255
3256
3257
3258
3259
# File 'lib/syntax_tree/node.rb', line 3252

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

#format(q) ⇒ Object



3261
3262
3263
3264
3265
# File 'lib/syntax_tree/node.rb', line 3261

def format(q)
  q.format(parent)
  q.text("::")
  q.format(constant)
end