Class: SyntaxTree::ConstPathField

Inherits:
Object
  • Object
show all
Defined in:
lib/syntax_tree.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

Instance Method Summary collapse

Constructor Details

#initialize(parent:, constant:, location:, comments: []) ⇒ ConstPathField

Returns a new instance of ConstPathField.



4057
4058
4059
4060
4061
4062
# File 'lib/syntax_tree.rb', line 4057

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



4055
4056
4057
# File 'lib/syntax_tree.rb', line 4055

def comments
  @comments
end

#constantObject (readonly)

Const

the constant itself



4049
4050
4051
# File 'lib/syntax_tree.rb', line 4049

def constant
  @constant
end

#locationObject (readonly)

Location

the location of this node



4052
4053
4054
# File 'lib/syntax_tree.rb', line 4052

def location
  @location
end

#parentObject (readonly)

untyped

the source of the constant



4046
4047
4048
# File 'lib/syntax_tree.rb', line 4046

def parent
  @parent
end

Instance Method Details

#child_nodesObject



4064
4065
4066
# File 'lib/syntax_tree.rb', line 4064

def child_nodes
  [parent, constant]
end

#format(q) ⇒ Object



4068
4069
4070
4071
4072
# File 'lib/syntax_tree.rb', line 4068

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

#pretty_print(q) ⇒ Object



4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
# File 'lib/syntax_tree.rb', line 4074

def pretty_print(q)
  q.group(2, "(", ")") do
    q.text("const_path_field")

    q.breakable
    q.pp(parent)

    q.breakable
    q.pp(constant)

    q.pp(Comment::List.new(comments))
  end
end

#to_json(*opts) ⇒ Object



4088
4089
4090
4091
4092
4093
4094
4095
4096
# File 'lib/syntax_tree.rb', line 4088

def to_json(*opts)
  {
    type: :const_path_field,
    parent: parent,
    constant: constant,
    loc: location,
    cmts: comments
  }.to_json(*opts)
end