class YARP::ParenthesesNode
Experimental RBS support (using type sampling data from the type_fusion project).
# sig/yarp/node.rbs class YARP::ParenthesesNode < YARP::Node def accept: (Analyzer::Visitor visitor) -> untyped def child_nodes: () -> untyped def initialize: (YARP::StatementsNode statements, YARP::Location opening_loc, YARP::Location closing_loc, YARP::Location location) -> void end
^^^^^^^^^
(10 + 34)
Represents a parenthesized expression
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 6 samples from 1 application.
def accept(visitor) visitor.visit_parentheses_node(self) end
def child_nodes
Experimental RBS support (using type sampling data from the type_fusion project).
def child_nodes: () -> untyped
This signature was generated using 4 samples from 1 application.
def child_nodes [statements] end
def closing
def closing closing_loc.slice end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { statements: statements, opening_loc: opening_loc, closing_loc: closing_loc, location: location } end
def initialize(statements, opening_loc, closing_loc, location)
Experimental RBS support (using type sampling data from the type_fusion project).
def initialize: (YARP::StatementsNode statements, YARP::Location opening_loc, YARP::Location closing_loc, YARP::Location location) -> void
This signature was generated using 2 samples from 1 application.
def initialize(statements, opening_loc, closing_loc, location) @statements = statements @opening_loc = opening_loc @closing_loc = closing_loc @location = location end
def opening
def opening opening_loc.slice end
def set_newline_flag(newline_marked)
def set_newline_flag(newline_marked) # Never mark ParenthesesNode with a newline flag, mark children instead end