public LoxInstance(LoxClass klass) { Klass = klass; }
public LoxClass(string n, LoxClass superclass, Dictionary <string, LoxFunction> methods) { this.name = n; this.methods = methods; this.superclass = superclass; }