class Prism::SuperNode
Represents the use of the ‘super` keyword with parentheses or arguments.
super() ^^^^^^^ super foo, bar ^^^^^^^^^^^^^^
Attributes
attr_reader arguments: ArgumentsNode
?
attr_reader block: BlockNode
| BlockArgumentNode
| nil
Public Class Methods
Initialize a new SuperNode
node.
# File prism/node.rb, line 15456 def initialize(source, node_id, location, flags, keyword_loc, lparen_loc, arguments, rparen_loc, block) @source = source @node_id = node_id @location = location @flags = flags @keyword_loc = keyword_loc @lparen_loc = lparen_loc @arguments = arguments @rparen_loc = rparen_loc @block = block end
Return a symbol representation of this node type. See ‘Node::type`.
# File prism/node.rb, line 15569 def self.type :super_node end
Public Instance Methods
Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.
# File prism/node.rb, line 15575 def ===(other) other.is_a?(SuperNode) && (keyword_loc.nil? == other.keyword_loc.nil?) && (lparen_loc.nil? == other.lparen_loc.nil?) && (arguments === other.arguments) && (rparen_loc.nil? == other.rparen_loc.nil?) && (block === other.block) end
def accept: (Visitor
visitor) -> void
# File prism/node.rb, line 15469 def accept(visitor) visitor.visit_super_node(self) end
def child_nodes
: () -> Array[nil | Node]
# File prism/node.rb, line 15474 def child_nodes [arguments, block] end
def comment_targets
: () -> Array[Node | Location]
# File prism/node.rb, line 15487 def comment_targets [keyword_loc, *lparen_loc, *arguments, *rparen_loc, *block] #: Array[Prism::node | Location] end
def compact_child_nodes
: () -> Array
# File prism/node.rb, line 15479 def compact_child_nodes compact = [] #: Array[Prism::node] compact << arguments if arguments compact << block if block compact end
def copy: (?node_id: Integer, ?location: Location
, ?flags: Integer, ?keyword_loc: Location
, ?lparen_loc: Location
?, ?arguments: ArgumentsNode
?, ?rparen_loc: Location
?, ?block: BlockNode
| BlockArgumentNode
| nil) -> SuperNode
# File prism/node.rb, line 15492 def copy(node_id: self.node_id, location: self.location, flags: self.flags, keyword_loc: self.keyword_loc, lparen_loc: self.lparen_loc, arguments: self.arguments, rparen_loc: self.rparen_loc, block: self.block) SuperNode.new(source, node_id, location, flags, keyword_loc, lparen_loc, arguments, rparen_loc, block) end
def deconstruct_keys
: (Array keys) -> { node_id: Integer, location: Location
, keyword_loc
: Location
, lparen_loc
: Location
?, arguments: ArgumentsNode
?, rparen_loc
: Location
?, block: BlockNode
| BlockArgumentNode
| nil }
# File prism/node.rb, line 15500 def deconstruct_keys(keys) { node_id: node_id, location: location, keyword_loc: keyword_loc, lparen_loc: lparen_loc, arguments: arguments, rparen_loc: rparen_loc, block: block } end
def inspect -> String
# File prism/node.rb, line 15559 def inspect InspectVisitor.compose(self) end
def keyword: () -> String
# File prism/node.rb, line 15544 def keyword keyword_loc.slice end
attr_reader keyword_loc
: Location
# File prism/node.rb, line 15505 def keyword_loc location = @keyword_loc return location if location.is_a?(Location) @keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
def lparen: () -> String?
# File prism/node.rb, line 15549 def lparen lparen_loc&.slice end
attr_reader lparen_loc
: Location
?
# File prism/node.rb, line 15512 def lparen_loc location = @lparen_loc case location when nil nil when Location location else @lparen_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end end
def rparen: () -> String?
# File prism/node.rb, line 15554 def rparen rparen_loc&.slice end
attr_reader rparen_loc
: Location
?
# File prism/node.rb, line 15528 def rparen_loc location = @rparen_loc case location when nil nil when Location location else @rparen_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end end
Return a symbol representation of this node type. See ‘Node#type`.
# File prism/node.rb, line 15564 def type :super_node end