@override int arity() { LoxFunction? initializer = findMethod(name); // init if (initializer != null) { return initializer.arity(); } return 0; }