class YARP::BlockParametersNode
Experimental RBS support (using type sampling data from the type_fusion
project).
# sig/yarp/node.rbs class YARP::BlockParametersNode < YARP::Node def accept: (Analyzer::Visitor visitor) -> (Array[Array, Array, , NilClass, NilClass, NilClass] | Array[Array, Array, , Array, , NilClass, NilClass, NilClass]) def child_nodes: () -> Array[YARP::ParametersNode] def initialize: (YARP::ParametersNode parameters, Array[] locals, YARP::Location opening_loc, YARP::Location closing_loc, YARP::Location location) -> void end
end
^^^^^^^^^^^^^^^^^
foo do |a, b = 1; local|
^^^^^^^^^^^^^^^^^
-> (a, b = 1; local) { }
Represents a block’s parameters declaration.
def accept(visitor)
Experimental RBS support (using type sampling data from the type_fusion
project).
def accept: (Analyzer::Visitor visitor) ->
This signature was generated using 2 samples from 1 application.
def accept(visitor) visitor.visit_block_parameters_node(self) end
def child_nodes
Experimental RBS support (using type sampling data from the type_fusion
project).
def child_nodes: () ->
This signature was generated using 1 sample from 1 application.
def child_nodes [parameters, *locals] end
def closing
def closing closing_loc&.slice end
def comment_targets
def comment_targets [*parameters, *locals, *opening_loc, *closing_loc] end
def copy(**params)
def copy(**params) BlockParametersNode.new( params.fetch(:parameters) { parameters }, params.fetch(:locals) { locals }, params.fetch(:opening_loc) { opening_loc }, params.fetch(:closing_loc) { closing_loc }, params.fetch(:location) { location }, ) end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { parameters: parameters, locals: locals, opening_loc: opening_loc, closing_loc: closing_loc, location: location } end
def initialize(parameters, locals, opening_loc, closing_loc, location)
Experimental RBS support (using type sampling data from the type_fusion
project).
def initialize: (YARP::ParametersNode parameters, locals, YARP::Location opening_loc, YARP::Location closing_loc, YARP::Location location) -> void
This signature was generated using 3 samples from 1 application.
def initialize(parameters, locals, opening_loc, closing_loc, location) @parameters = parameters @locals = locals @opening_loc = opening_loc @closing_loc = closing_loc @location = location end
def inspect(inspector = NodeInspector.new)
def inspect(inspector = NodeInspector.new) inspector << inspector.header(self) if (parameters = self.parameters).nil? inspector << "├── parameters: ∅\n" else inspector << "├── parameters:\n" inspector << parameters.inspect(inspector.child_inspector("│ ")).delete_prefix(inspector.prefix) end inspector << "├── locals: #{inspector.list("#{inspector.prefix}│ ", locals)}" inspector << "├── opening_loc: #{inspector.location(opening_loc)}\n" inspector << "└── closing_loc: #{inspector.location(closing_loc)}\n" inspector.to_str end
def opening
def opening opening_loc&.slice end