class YARP::RangeNode
Experimental RBS support (using type sampling data from the type_fusion
project).
# sig/yarp/node.rbs class YARP::RangeNode < YARP::Node def accept: (Analyzer::Visitor visitor) -> untyped end
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
c if a =~ /left/ … b =~ /right/
^^^^
1..2
Represents the use of the ‘..` or `…` operators.
def accept(visitor)
Experimental RBS support (using type sampling data from the type_fusion
project).
def accept: (Analyzer::Visitor visitor) -> untyped
This signature was generated using 1 sample from 1 application.
def accept(visitor) visitor.visit_range_node(self) end
def child_nodes
def child_nodes [left, right] end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { left: left, right: right, operator_loc: operator_loc, flags: flags, location: location } end
def initialize(left, right, operator_loc, flags, location)
def initialize(left, right, operator_loc, flags, location) @left = left @right = right @operator_loc = operator_loc @flags = flags @location = location end
def operator
def operator operator_loc.slice end