Class: SyntaxTree::Field

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

Overview

Field is always the child of an assignment. It represents assigning to a “field” on an object.

object.variable = 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:, operator:, name:, location:, comments: []) ⇒ Field

Returns a new instance of Field.



4457
4458
4459
4460
4461
4462
4463
# File 'lib/syntax_tree/node.rb', line 4457

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

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



4455
4456
4457
# File 'lib/syntax_tree/node.rb', line 4455

def comments
  @comments
end

#nameObject (readonly)

Const | Ident

the name of the field being assigned



4452
4453
4454
# File 'lib/syntax_tree/node.rb', line 4452

def name
  @name
end

#operatorObject (readonly)

:“::” | Op | Period

the operator being used for the assignment



4449
4450
4451
# File 'lib/syntax_tree/node.rb', line 4449

def operator
  @operator
end

#parentObject (readonly)

untyped

the parent object that owns the field being assigned



4446
4447
4448
# File 'lib/syntax_tree/node.rb', line 4446

def parent
  @parent
end

Instance Method Details

#accept(visitor) ⇒ Object



4465
4466
4467
# File 'lib/syntax_tree/node.rb', line 4465

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

#child_nodesObject Also known as: deconstruct



4469
4470
4471
# File 'lib/syntax_tree/node.rb', line 4469

def child_nodes
  [parent, (operator if operator != :"::"), name]
end

#deconstruct_keys(_keys) ⇒ Object



4475
4476
4477
4478
4479
4480
4481
4482
4483
# File 'lib/syntax_tree/node.rb', line 4475

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

#format(q) ⇒ Object



4485
4486
4487
4488
4489
4490
4491
# File 'lib/syntax_tree/node.rb', line 4485

def format(q)
  q.group do
    q.format(parent)
    q.format(CallOperatorFormatter.new(operator), stackable: false)
    q.format(name)
  end
end