Class: SyntaxTree::Super

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

Overview

Super represents using the super keyword with arguments. It can optionally use parentheses.

super(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(arguments:, location:, comments: []) ⇒ Super

Returns a new instance of Super.



8454
8455
8456
8457
8458
# File 'lib/syntax_tree/node.rb', line 8454

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

Instance Attribute Details

#argumentsObject (readonly)

ArgParen | Args

the arguments to the keyword



8449
8450
8451
# File 'lib/syntax_tree/node.rb', line 8449

def arguments
  @arguments
end

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



8452
8453
8454
# File 'lib/syntax_tree/node.rb', line 8452

def comments
  @comments
end

Instance Method Details

#accept(visitor) ⇒ Object



8460
8461
8462
# File 'lib/syntax_tree/node.rb', line 8460

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

#child_nodesObject Also known as: deconstruct



8464
8465
8466
# File 'lib/syntax_tree/node.rb', line 8464

def child_nodes
  [arguments]
end

#deconstruct_keys(_keys) ⇒ Object



8470
8471
8472
# File 'lib/syntax_tree/node.rb', line 8470

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

#format(q) ⇒ Object



8474
8475
8476
8477
8478
8479
8480
8481
8482
8483
8484
8485
# File 'lib/syntax_tree/node.rb', line 8474

def format(q)
  q.group do
    q.text("super")

    if arguments.is_a?(ArgParen)
      q.format(arguments)
    else
      q.text(" ")
      q.nest("super ".length) { q.format(arguments) }
    end
  end
end