class YARP::OrNode

def initialize(left, right, operator_loc, location)

Experimental RBS support (using type sampling data from the type_fusion project).

type YARP__OrNode_initialize_left = YARP::CallNode | YARP::InstanceVariableReadNode | YARP::LocalVariableReadNode | YARP::OrNode | YARP::ForwardingSuperNode
type YARP__OrNode_initialize_right = YARP::CallNode | YARP::LocalVariableReadNode | YARP::ParenthesesNode | YARP::ConstantReadNode | YARP::AndNode | YARP::StringNode | YARP::ConstantPathNode | YARP::HashNode

def initialize: (YARP__OrNode_initialize_left left, YARP__OrNode_initialize_right right, YARP::Location operator_loc, YARP::Location location) -> void

This signature was generated using 24 samples from 1 application.

def initialize: (left: Node, right: Node, operator_loc: Location, location: Location) -> void
def initialize(left, right, operator_loc, location)
  @left = left
  @right = right
  @operator_loc = operator_loc
  @location = location
end