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.



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

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



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

def comments
  @comments
end

#constantObject (readonly)

Const

the constant itself



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

def constant
  @constant
end

#parentObject (readonly)

untyped

the source of the constant



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

def parent
  @parent
end

Instance Method Details

#accept(visitor) ⇒ Object



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

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

#child_nodesObject Also known as: deconstruct



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

def child_nodes
  [parent, constant]
end

#deconstruct_keys(_keys) ⇒ Object



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

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

#format(q) ⇒ Object



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

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