class Prism::ReturnNode
Represents the use of the ‘return` keyword.
return 1 ^^^^^^^^
Attributes
attr_reader arguments: ArgumentsNode
?
Public Class Methods
Initialize a new ReturnNode
node.
# File prism/node.rb, line 14530 def initialize(source, node_id, location, flags, keyword_loc, arguments) @source = source @node_id = node_id @location = location @flags = flags @keyword_loc = keyword_loc @arguments = arguments end
Return a symbol representation of this node type. See ‘Node::type`.
# File prism/node.rb, line 14600 def self.type :return_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 14606 def ===(other) other.is_a?(ReturnNode) && (keyword_loc.nil? == other.keyword_loc.nil?) && (arguments === other.arguments) end
def accept: (Visitor
visitor) -> void
# File prism/node.rb, line 14540 def accept(visitor) visitor.visit_return_node(self) end
def child_nodes
: () -> Array[nil | Node]
# File prism/node.rb, line 14545 def child_nodes [arguments] end
def comment_targets
: () -> Array[Node | Location]
# File prism/node.rb, line 14557 def comment_targets [keyword_loc, *arguments] #: Array[Prism::node | Location] end
def compact_child_nodes
: () -> Array
# File prism/node.rb, line 14550 def compact_child_nodes compact = [] #: Array[Prism::node] compact << arguments if arguments compact end
def copy: (?node_id: Integer, ?location: Location
, ?flags: Integer, ?keyword_loc: Location
, ?arguments: ArgumentsNode
?) -> ReturnNode
# File prism/node.rb, line 14562 def copy(node_id: self.node_id, location: self.location, flags: self.flags, keyword_loc: self.keyword_loc, arguments: self.arguments) ReturnNode.new(source, node_id, location, flags, keyword_loc, arguments) end
def deconstruct_keys
: (Array keys) -> { node_id: Integer, location: Location
, keyword_loc
: Location
, arguments: ArgumentsNode
? }
# File prism/node.rb, line 14570 def deconstruct_keys(keys) { node_id: node_id, location: location, keyword_loc: keyword_loc, arguments: arguments } end
def inspect -> String
# File prism/node.rb, line 14590 def inspect InspectVisitor.compose(self) end
def keyword: () -> String
# File prism/node.rb, line 14585 def keyword keyword_loc.slice end
attr_reader keyword_loc
: Location
# File prism/node.rb, line 14575 def keyword_loc location = @keyword_loc return location if location.is_a?(Location) @keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
Return a symbol representation of this node type. See ‘Node#type`.
# File prism/node.rb, line 14595 def type :return_node end