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::LocalVariableReadNode | YARP::InstanceVariableReadNode | YARP::ForwardingSuperNode | YARP::OrNode
type YARP__OrNode_initialize_right = YARP::ConstantPathNode | YARP::ParenthesesNode | YARP::ConstantReadNode | YARP::CallNode | YARP::StringNode | YARP::LocalVariableReadNode | YARP::HashNode | YARP::AndNode

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