| 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 1031 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1042 | 1042 |
| 1043 // Finish the initialization by compiling the bootstrap scripts containing the | 1043 // Finish the initialization by compiling the bootstrap scripts containing the |
| 1044 // base interfaces and the implementation of the internal classes. | 1044 // base interfaces and the implementation of the internal classes. |
| 1045 INIT_LIBRARY(Core, core, true); | 1045 INIT_LIBRARY(Core, core, true); |
| 1046 | 1046 |
| 1047 INIT_LIBRARY(Async, async, true); | 1047 INIT_LIBRARY(Async, async, true); |
| 1048 INIT_LIBRARY(Collection, collection, false); | 1048 INIT_LIBRARY(Collection, collection, false); |
| 1049 INIT_LIBRARY(CollectionDev, collection_dev, false); | 1049 INIT_LIBRARY(CollectionDev, collection_dev, false); |
| 1050 INIT_LIBRARY(Crypto, crypto, false); | 1050 INIT_LIBRARY(Crypto, crypto, false); |
| 1051 INIT_LIBRARY(Isolate, isolate, true); | 1051 INIT_LIBRARY(Isolate, isolate, true); |
| 1052 INIT_LIBRARY(Json, json, false); | 1052 INIT_LIBRARY(Json, json, true); |
| 1053 INIT_LIBRARY(Math, math, true); | 1053 INIT_LIBRARY(Math, math, true); |
| 1054 INIT_LIBRARY(Mirrors, mirrors, true); | 1054 INIT_LIBRARY(Mirrors, mirrors, true); |
| 1055 INIT_LIBRARY(Scalarlist, scalarlist, true); | 1055 INIT_LIBRARY(Scalarlist, scalarlist, true); |
| 1056 INIT_LIBRARY(Utf, utf, false); | 1056 INIT_LIBRARY(Utf, utf, false); |
| 1057 INIT_LIBRARY(Uri, uri, false); | 1057 INIT_LIBRARY(Uri, uri, false); |
| 1058 | 1058 |
| 1059 Bootstrap::SetupNativeResolver(); | 1059 Bootstrap::SetupNativeResolver(); |
| 1060 | 1060 |
| 1061 // Remove the Object superclass cycle by setting the super type to null (not | 1061 // Remove the Object superclass cycle by setting the super type to null (not |
| 1062 // to the type of null). | 1062 // to the type of null). |
| (...skipping 12010 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13073 } | 13073 } |
| 13074 return result.raw(); | 13074 return result.raw(); |
| 13075 } | 13075 } |
| 13076 | 13076 |
| 13077 | 13077 |
| 13078 const char* WeakProperty::ToCString() const { | 13078 const char* WeakProperty::ToCString() const { |
| 13079 return "_WeakProperty"; | 13079 return "_WeakProperty"; |
| 13080 } | 13080 } |
| 13081 | 13081 |
| 13082 } // namespace dart | 13082 } // namespace dart |
| OLD | NEW |