Class: SyntaxTree::ConstPathField
- Inherits:
-
Object
- Object
- SyntaxTree::ConstPathField
- 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
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#constant ⇒ Object
readonly
- Const
-
the constant itself.
-
#location ⇒ Object
readonly
- Location
-
the location of this node.
-
#parent ⇒ Object
readonly
- untyped
-
the source of the constant.
Instance Method Summary collapse
- #child_nodes ⇒ Object
- #format(q) ⇒ Object
-
#initialize(parent:, constant:, location:, comments: []) ⇒ ConstPathField
constructor
A new instance of ConstPathField.
- #pretty_print(q) ⇒ Object
- #to_json(*opts) ⇒ Object
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
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
4055 4056 4057 |
# File 'lib/syntax_tree.rb', line 4055 def comments @comments end |
#constant ⇒ Object (readonly)
- Const
-
the constant itself
4049 4050 4051 |
# File 'lib/syntax_tree.rb', line 4049 def constant @constant end |
#location ⇒ Object (readonly)
- Location
-
the location of this node
4052 4053 4054 |
# File 'lib/syntax_tree.rb', line 4052 def location @location end |
#parent ⇒ Object (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_nodes ⇒ Object
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 |