class YARP::SuperNode
Represents the use of the ‘super` keyword with parentheses or arguments.
super() ^^^^^^^ super foo, bar ^^^^^^^^^^^^^^
Attributes
arguments[R]
attr_reader arguments: ArgumentsNode
?
block[R]
attr_reader block: BlockNode
?
keyword_loc[R]
attr_reader keyword_loc
: Location
lparen_loc[R]
attr_reader lparen_loc
: Location
?
rparen_loc[R]
attr_reader rparen_loc
: Location
?
Public Class Methods
new(keyword_loc, lparen_loc, arguments, rparen_loc, block, location)
click to toggle source
def initialize: (keyword_loc
: Location
, lparen_loc
: Location
?, arguments: ArgumentsNode
?, rparen_loc
: Location
?, block: BlockNode
?, location: Location
) -> void
# File yarp/node.rb, line 10085 def initialize(keyword_loc, lparen_loc, arguments, rparen_loc, block, location) @keyword_loc = keyword_loc @lparen_loc = lparen_loc @arguments = arguments @rparen_loc = rparen_loc @block = block @location = location end
Public Instance Methods
accept(visitor)
click to toggle source
def accept: (visitor: Visitor
) -> void
# File yarp/node.rb, line 10095 def accept(visitor) visitor.visit_super_node(self) end
child_nodes()
click to toggle source
def child_nodes
: () -> Array[nil | Node]
# File yarp/node.rb, line 10100 def child_nodes [arguments, block] end
Also aliased as: deconstruct
comment_targets()
click to toggle source
def comment_targets
: () -> Array[Node | Location]
# File yarp/node.rb, line 10105 def comment_targets [keyword_loc, *lparen_loc, *arguments, *rparen_loc, *block] end
copy(**params)
click to toggle source
def copy: (**params) -> SuperNode
# File yarp/node.rb, line 10110 def copy(**params) SuperNode.new( params.fetch(:keyword_loc) { keyword_loc }, params.fetch(:lparen_loc) { lparen_loc }, params.fetch(:arguments) { arguments }, params.fetch(:rparen_loc) { rparen_loc }, params.fetch(:block) { block }, params.fetch(:location) { location }, ) end
deconstruct_keys(keys)
click to toggle source
def deconstruct_keys
: (keys: Array) -> Hash[Symbol, nil | Node
| Array | String | Token
| Array | Location]
# File yarp/node.rb, line 10125 def deconstruct_keys(keys) { keyword_loc: keyword_loc, lparen_loc: lparen_loc, arguments: arguments, rparen_loc: rparen_loc, block: block, location: location } end
inspect(inspector = NodeInspector.new)
click to toggle source
# File yarp/node.rb, line 10144 def inspect(inspector = NodeInspector.new) inspector << inspector.header(self) inspector << "├── keyword_loc: #{inspector.location(keyword_loc)}\n" inspector << "├── lparen_loc: #{inspector.location(lparen_loc)}\n" if (arguments = self.arguments).nil? inspector << "├── arguments: ∅\n" else inspector << "├── arguments:\n" inspector << arguments.inspect(inspector.child_inspector("│ ")).delete_prefix(inspector.prefix) end inspector << "├── rparen_loc: #{inspector.location(rparen_loc)}\n" if (block = self.block).nil? inspector << "└── block: ∅\n" else inspector << "└── block:\n" inspector << block.inspect(inspector.child_inspector(" ")).delete_prefix(inspector.prefix) end inspector.to_str end
keyword()
click to toggle source
def keyword: () -> String
# File yarp/node.rb, line 10130 def keyword keyword_loc.slice end
lparen()
click to toggle source
def lparen: () -> String?
# File yarp/node.rb, line 10135 def lparen lparen_loc&.slice end
rparen()
click to toggle source
def rparen: () -> String?
# File yarp/node.rb, line 10140 def rparen rparen_loc&.slice end