class YARP::DefinedNode
Experimental RBS support (using type sampling data from the type_fusion
project).
# sig/yarp/node.rbs class YARP::DefinedNode < YARP::Node def accept: (Analyzer::Visitor visitor) -> untyped def initialize: (YARP::Location lparen_loc, YARP::ConstantPathNode value, YARP::Location rparen_loc, YARP::Location keyword_loc, YARP::Location location) -> void end
^^^^^^^^^^^
defined?(a)
Represents the use of the ‘defined?` keyword.
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_defined_node(self) end
def child_nodes
def child_nodes [value] end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { lparen_loc: lparen_loc, value: value, rparen_loc: rparen_loc, keyword_loc: keyword_loc, location: location } end
def initialize(lparen_loc, value, rparen_loc, keyword_loc, location)
Experimental RBS support (using type sampling data from the type_fusion
project).
def initialize: (YARP::Location lparen_loc, YARP::ConstantPathNode value, YARP::Location rparen_loc, YARP::Location keyword_loc, YARP::Location location) -> void
This signature was generated using 1 sample from 1 application.
def initialize(lparen_loc, value, rparen_loc, keyword_loc, location) @lparen_loc = lparen_loc @value = value @rparen_loc = rparen_loc @keyword_loc = keyword_loc @location = location end
def keyword
def keyword keyword_loc.slice end
def lparen
def lparen lparen_loc&.slice end
def rparen
def rparen rparen_loc&.slice end