LoxClass constructor

LoxClass(
  1. String name,
  2. LoxClass? superclass,
  3. Map<String, LoxFunction> methods
)

Implementation

LoxClass(this.name, this.superclass, this.methods);