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 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 1 sample from 1 application.
def accept(visitor) visitor.visit_parentheses_node(self) end
def child_nodes
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)
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