class YARP::ClassNode

def initialize(locals, class_keyword_loc, constant_path, inheritance_operator_loc, superclass, body, end_keyword_loc, location)

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

type YARP__ClassNode_initialize_superclass = YARP::ConstantReadNode | nil | YARP::ConstantPathNode | YARP::CallNode

def initialize: (Array[] locals, YARP::Location class_keyword_loc, (YARP::ConstantReadNode | YARP::ConstantPathNode) constant_path, YARP::Location? inheritance_operator_loc, YARP__ClassNode_initialize_superclass superclass, YARP::StatementsNode? body, YARP::Location end_keyword_loc, YARP::Location location) -> void

This signature was generated using 38 samples from 1 application.

def initialize: (locals: Array[Symbol], class_keyword_loc: Location, constant_path: Node, inheritance_operator_loc: Location?, superclass: Node?, body: Node?, end_keyword_loc: Location, location: Location) -> void
def initialize(locals, class_keyword_loc, constant_path, inheritance_operator_loc, superclass, body, end_keyword_loc, location)
  @locals = locals
  @class_keyword_loc = class_keyword_loc
  @constant_path = constant_path
  @inheritance_operator_loc = inheritance_operator_loc
  @superclass = superclass
  @body = body
  @end_keyword_loc = end_keyword_loc
  @location = location
end