LoxClass constructor
LoxClass(
- String name,
- LoxClass? superclass,
- Map<
String, LoxFunction> methods
Implementation
LoxClass(this.name, this.superclass, this.methods);