class YARP::CallNode
Represents a method call, in all of the various forms that can take.
foo ^^^ foo() ^^^^^ +foo ^^^^ foo + bar ^^^^^^^^^ foo.bar ^^^^^^^ foo&.bar ^^^^^^^^
Attributes
attr_reader arguments: ArgumentsNode
?
attr_reader block: BlockNode
?
attr_reader call_operator_loc
: Location
?
attr_reader closing_loc
: Location
?
attr_reader message_loc
: Location
?
attr_reader name: String
attr_reader opening_loc
: Location
?
attr_reader receiver: Node
?
Public Class Methods
def initialize: (receiver: Node
?, call_operator_loc
: Location
?, message_loc
: Location
?, opening_loc
: Location
?, arguments: ArgumentsNode
?, closing_loc
: Location
?, block: BlockNode
?, flags: Integer, name: String, location: Location
) -> void
# File yarp/node.rb, line 1491 def initialize(receiver, call_operator_loc, message_loc, opening_loc, arguments, closing_loc, block, flags, name, location) @receiver = receiver @call_operator_loc = call_operator_loc @message_loc = message_loc @opening_loc = opening_loc @arguments = arguments @closing_loc = closing_loc @block = block @flags = flags @name = name @location = location end
Public Instance Methods
def accept: (visitor: Visitor
) -> void
# File yarp/node.rb, line 1505 def accept(visitor) visitor.visit_call_node(self) end
def call_operator
: () -> String?
# File yarp/node.rb, line 1544 def call_operator call_operator_loc&.slice end
def child_nodes
: () -> Array[nil | Node]
# File yarp/node.rb, line 1510 def child_nodes [receiver, arguments, block] end
def closing: () -> String?
# File yarp/node.rb, line 1559 def closing closing_loc&.slice end
def comment_targets
: () -> Array[Node | Location]
# File yarp/node.rb, line 1515 def comment_targets [*receiver, *call_operator_loc, *message_loc, *opening_loc, *arguments, *closing_loc, *block] end
def copy: (**params) -> CallNode
# File yarp/node.rb, line 1520 def copy(**params) CallNode.new( params.fetch(:receiver) { receiver }, params.fetch(:call_operator_loc) { call_operator_loc }, params.fetch(:message_loc) { message_loc }, params.fetch(:opening_loc) { opening_loc }, params.fetch(:arguments) { arguments }, params.fetch(:closing_loc) { closing_loc }, params.fetch(:block) { block }, params.fetch(:flags) { flags }, params.fetch(:name) { name }, params.fetch(:location) { location }, ) end
def deconstruct_keys
: (keys: Array) -> Hash[Symbol, nil | Node
| Array | String | Token
| Array | Location]
# File yarp/node.rb, line 1539 def deconstruct_keys(keys) { receiver: receiver, call_operator_loc: call_operator_loc, message_loc: message_loc, opening_loc: opening_loc, arguments: arguments, closing_loc: closing_loc, block: block, flags: flags, name: name, location: location } end
# File yarp/node.rb, line 1573 def inspect(inspector = NodeInspector.new) inspector << inspector.header(self) if (receiver = self.receiver).nil? inspector << "├── receiver: ∅\n" else inspector << "├── receiver:\n" inspector << receiver.inspect(inspector.child_inspector("│ ")).delete_prefix(inspector.prefix) end inspector << "├── call_operator_loc: #{inspector.location(call_operator_loc)}\n" inspector << "├── message_loc: #{inspector.location(message_loc)}\n" inspector << "├── opening_loc: #{inspector.location(opening_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 << "├── closing_loc: #{inspector.location(closing_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 flags = [("safe_navigation" if safe_navigation?), ("variable_call" if variable_call?)].compact inspector << "├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n" inspector << "└── name: #{name.inspect}\n" inspector.to_str end
def message: () -> String?
# File yarp/node.rb, line 1549 def message message_loc&.slice end
def opening: () -> String?
# File yarp/node.rb, line 1554 def opening opening_loc&.slice end
def variable_call?: () -> bool
# File yarp/node.rb, line 1569 def variable_call? flags.anybits?(CallNodeFlags::VARIABLE_CALL) end