OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #include "vm/object.h" | 5 #include "vm/object.h" |
6 | 6 |
7 #include "include/dart_api.h" | 7 #include "include/dart_api.h" |
8 #include "platform/assert.h" | 8 #include "platform/assert.h" |
9 #include "vm/assembler.h" | 9 #include "vm/assembler.h" |
10 #include "vm/bigint_operations.h" | 10 #include "vm/bigint_operations.h" |
(...skipping 996 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1007 cls = dynamic_class(); | 1007 cls = dynamic_class(); |
1008 type = Type::NewNonParameterizedType(cls); | 1008 type = Type::NewNonParameterizedType(cls); |
1009 object_store->set_dynamic_type(type); | 1009 object_store->set_dynamic_type(type); |
1010 | 1010 |
1011 // Finish the initialization by compiling the bootstrap scripts containing the | 1011 // Finish the initialization by compiling the bootstrap scripts containing the |
1012 // base interfaces and the implementation of the internal classes. | 1012 // base interfaces and the implementation of the internal classes. |
1013 INIT_LIBRARY(Core, core, true); | 1013 INIT_LIBRARY(Core, core, true); |
1014 | 1014 |
1015 INIT_LIBRARY(Async, async, true); | 1015 INIT_LIBRARY(Async, async, true); |
1016 INIT_LIBRARY(Collection, collection, true); | 1016 INIT_LIBRARY(Collection, collection, true); |
1017 INIT_LIBRARY(CollectionDev, collection_dev, false); | 1017 INIT_LIBRARY(CollectionDev, collection_dev, true); |
1018 INIT_LIBRARY(Crypto, crypto, false); | 1018 INIT_LIBRARY(Crypto, crypto, false); |
1019 INIT_LIBRARY(Isolate, isolate, true); | 1019 INIT_LIBRARY(Isolate, isolate, true); |
1020 INIT_LIBRARY(Json, json, true); | 1020 INIT_LIBRARY(Json, json, true); |
1021 INIT_LIBRARY(Math, math, true); | 1021 INIT_LIBRARY(Math, math, true); |
1022 INIT_LIBRARY(Mirrors, mirrors, true); | 1022 INIT_LIBRARY(Mirrors, mirrors, true); |
1023 INIT_LIBRARY(TypedData, typeddata, true); | 1023 INIT_LIBRARY(TypedData, typeddata, true); |
1024 INIT_LIBRARY(Utf, utf, false); | 1024 INIT_LIBRARY(Utf, utf, false); |
1025 INIT_LIBRARY(Uri, uri, false); | 1025 INIT_LIBRARY(Uri, uri, false); |
1026 | 1026 |
1027 Bootstrap::SetupNativeResolver(); | 1027 Bootstrap::SetupNativeResolver(); |
(...skipping 12065 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
13093 } | 13093 } |
13094 return result.raw(); | 13094 return result.raw(); |
13095 } | 13095 } |
13096 | 13096 |
13097 | 13097 |
13098 const char* WeakProperty::ToCString() const { | 13098 const char* WeakProperty::ToCString() const { |
13099 return "_WeakProperty"; | 13099 return "_WeakProperty"; |
13100 } | 13100 } |
13101 | 13101 |
13102 } // namespace dart | 13102 } // namespace dart |
OLD | NEW |