}
public void initialize() {
// Create the default new() method for creating objects.
Scope scope = mModule.getScope();
Callable newMethod = new ClassNew(scope);
scope.define("new", newMethod);
ClassObj iterable = class_("Iterable").end();
ClassObj indexable = class_("Indexable", iterable).end();
ClassObj comparable = class_("Comparable").end();