| Index: vm/object.cc
|
| ===================================================================
|
| --- vm/object.cc (revision 849)
|
| +++ vm/object.cc (working copy)
|
| @@ -557,6 +557,12 @@
|
| type = Type::NewNonParameterizedType(cls);
|
| object_store->set_bool_interface(type);
|
|
|
| + name = String::NewSymbol("List");
|
| + cls = Class::NewInterface(name, script);
|
| + core_lib.AddClass(cls);
|
| + type = Type::NewNonParameterizedType(cls);
|
| + object_store->set_list_interface(type);
|
| +
|
| // The classes 'Null', 'Dynamic', and 'void' are not registered in the class
|
| // dictionary and are not named, but corresponding types are stored in the
|
| // object store.
|
|
|