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 lib/prism/node.rb, line 16757 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 lib/prism/node.rb, line 16888 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 lib/prism/node.rb, line 16894 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 lib/prism/node.rb, line 16770 def accept(visitor) visitor.visit_super_node(self) end
def child_nodes
: () -> Array[nil | Node]
# File lib/prism/node.rb, line 16775 def child_nodes [arguments, block] end
def comment_targets
: () -> Array[Node | Location]
# File lib/prism/node.rb, line 16788 def comment_targets [keyword_loc, *lparen_loc, *arguments, *rparen_loc, *block] #: Array[Prism::node | Location] end
def compact_child_nodes
: () -> Array
# File lib/prism/node.rb, line 16780 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 lib/prism/node.rb, line 16793 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 lib/prism/node.rb, line 16801 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 lib/prism/node.rb, line 16878 def inspect InspectVisitor.compose(self) end
def keyword: () -> String
# File lib/prism/node.rb, line 16863 def keyword keyword_loc.slice end
attr_reader keyword_loc
: Location
# File lib/prism/node.rb, line 16806 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 lib/prism/node.rb, line 16868 def lparen lparen_loc&.slice end
attr_reader lparen_loc
: Location
?
# File lib/prism/node.rb, line 16819 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 lib/prism/node.rb, line 16873 def rparen rparen_loc&.slice end
attr_reader rparen_loc
: Location
?
# File lib/prism/node.rb, line 16841 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
Save the keyword_loc
location using the given saved source so that it can be retrieved later.
# File lib/prism/node.rb, line 16814 def save_keyword_loc(repository) repository.enter(node_id, :keyword_loc) end
Save the lparen_loc
location using the given saved source so that it can be retrieved later.
# File lib/prism/node.rb, line 16833 def save_lparen_loc(repository) repository.enter(node_id, :lparen_loc) unless @lparen_loc.nil? end
Save the rparen_loc
location using the given saved source so that it can be retrieved later.
# File lib/prism/node.rb, line 16855 def save_rparen_loc(repository) repository.enter(node_id, :rparen_loc) unless @rparen_loc.nil? end
Return a symbol representation of this node type. See Node#type
.
# File lib/prism/node.rb, line 16883 def type :super_node end