Index: runtime/vm/object.cc |
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc |
index aeb798833557a3b06b90ade0ce623bd83e8a7ac1..e2709122e182ff8de6d7f587a6b7e94398fac6a0 100644 |
--- a/runtime/vm/object.cc |
+++ b/runtime/vm/object.cc |
@@ -601,6 +601,13 @@ void Object::InitOnce(Isolate* isolate) { |
isolate->object_store()->set_one_byte_string_class(cls); |
cls = Class::NewStringClass(kTwoByteStringCid); |
isolate->object_store()->set_two_byte_string_class(cls); |
+ cls = Class::New<Mint>(); |
+ isolate->object_store()->set_mint_class(cls); |
+ cls = Class::New<Bigint>(); |
+ isolate->object_store()->set_bigint_class(cls); |
+ cls = Class::New<Double>(); |
+ isolate->object_store()->set_double_class(cls); |
+ cls = Class::NewExternalTypedDataClass(kExternalTypedDataUint8ArrayCid); |
hausner
2015/05/21 20:37:12
You don't use the value of cls anywhere. Is this l
siva
2015/05/22 18:09:27
The class kExternalTypedDataUint8ArrayCid needs to
|
// Allocate and initialize the empty_array instance. |
{ |