| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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/precompiler.h" | 5 #include "vm/precompiler.h" |
| 6 | 6 |
| 7 #include "vm/cha.h" | 7 #include "vm/cha.h" |
| 8 #include "vm/code_patcher.h" | 8 #include "vm/code_patcher.h" |
| 9 #include "vm/compiler.h" | 9 #include "vm/compiler.h" |
| 10 #include "vm/hash_table.h" | 10 #include "vm/hash_table.h" |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 { "dart:core", "UnsupportedError", "UnsupportedError." }, | 243 { "dart:core", "UnsupportedError", "UnsupportedError." }, |
| 244 { "dart:core", "_CastError", "_CastError._create" }, | 244 { "dart:core", "_CastError", "_CastError._create" }, |
| 245 { "dart:core", "_InternalError", "_InternalError." }, | 245 { "dart:core", "_InternalError", "_InternalError." }, |
| 246 { "dart:core", "_InvocationMirror", "_allocateInvocationMirror" }, | 246 { "dart:core", "_InvocationMirror", "_allocateInvocationMirror" }, |
| 247 { "dart:core", "_JavascriptCompatibilityError", | 247 { "dart:core", "_JavascriptCompatibilityError", |
| 248 "_JavascriptCompatibilityError." }, | 248 "_JavascriptCompatibilityError." }, |
| 249 { "dart:core", "_JavascriptIntegerOverflowError", | 249 { "dart:core", "_JavascriptIntegerOverflowError", |
| 250 "_JavascriptIntegerOverflowError." }, | 250 "_JavascriptIntegerOverflowError." }, |
| 251 { "dart:core", "_TypeError", "_TypeError._create" }, | 251 { "dart:core", "_TypeError", "_TypeError._create" }, |
| 252 { "dart:isolate", "IsolateSpawnException", "IsolateSpawnException." }, | 252 { "dart:isolate", "IsolateSpawnException", "IsolateSpawnException." }, |
| 253 { "dart:isolate", "_IsolateUnhandledException", | |
| 254 "_IsolateUnhandledException." }, | |
| 255 { "dart:isolate", "::", "_getIsolateScheduleImmediateClosure" }, | 253 { "dart:isolate", "::", "_getIsolateScheduleImmediateClosure" }, |
| 256 { "dart:isolate", "::", "_setupHooks" }, | 254 { "dart:isolate", "::", "_setupHooks" }, |
| 257 { "dart:isolate", "::", "_startMainIsolate" }, | 255 { "dart:isolate", "::", "_startMainIsolate" }, |
| 258 { "dart:isolate", "_RawReceivePortImpl", "_handleMessage" }, | 256 { "dart:isolate", "_RawReceivePortImpl", "_handleMessage" }, |
| 259 { "dart:isolate", "_RawReceivePortImpl", "_lookupHandler" }, | 257 { "dart:isolate", "_RawReceivePortImpl", "_lookupHandler" }, |
| 260 { "dart:isolate", "_SendPortImpl", "send" }, | 258 { "dart:isolate", "_SendPortImpl", "send" }, |
| 261 { "dart:typed_data", "ByteData", "ByteData." }, | 259 { "dart:typed_data", "ByteData", "ByteData." }, |
| 262 { "dart:typed_data", "ByteData", "ByteData._view" }, | 260 { "dart:typed_data", "ByteData", "ByteData._view" }, |
| 263 { "dart:typed_data", "_ByteBuffer", "_ByteBuffer._New" }, | 261 { "dart:typed_data", "_ByteBuffer", "_ByteBuffer._New" }, |
| 264 { "dart:_vmservice", "::", "_registerIsolate" }, | 262 { "dart:_vmservice", "::", "_registerIsolate" }, |
| (...skipping 876 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1141 cls = it.GetNextClass(); | 1139 cls = it.GetNextClass(); |
| 1142 if (cls.IsDynamicClass()) { | 1140 if (cls.IsDynamicClass()) { |
| 1143 continue; // class 'dynamic' is in the read-only VM isolate. | 1141 continue; // class 'dynamic' is in the read-only VM isolate. |
| 1144 } | 1142 } |
| 1145 cls.set_is_allocated(false); | 1143 cls.set_is_allocated(false); |
| 1146 } | 1144 } |
| 1147 } | 1145 } |
| 1148 } | 1146 } |
| 1149 | 1147 |
| 1150 } // namespace dart | 1148 } // namespace dart |
| OLD | NEW |