| 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/cpu.h" | 10 #include "vm/cpu.h" |
| (...skipping 10448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10459 RawLibrary* Library::MirrorsLibrary() { | 10459 RawLibrary* Library::MirrorsLibrary() { |
| 10460 return Isolate::Current()->object_store()->mirrors_library(); | 10460 return Isolate::Current()->object_store()->mirrors_library(); |
| 10461 } | 10461 } |
| 10462 | 10462 |
| 10463 | 10463 |
| 10464 RawLibrary* Library::NativeWrappersLibrary() { | 10464 RawLibrary* Library::NativeWrappersLibrary() { |
| 10465 return Isolate::Current()->object_store()->native_wrappers_library(); | 10465 return Isolate::Current()->object_store()->native_wrappers_library(); |
| 10466 } | 10466 } |
| 10467 | 10467 |
| 10468 | 10468 |
| 10469 RawLibrary* Library::ProfilerLibrary() { |
| 10470 return Isolate::Current()->object_store()->profiler_library(); |
| 10471 } |
| 10472 |
| 10473 |
| 10469 RawLibrary* Library::TypedDataLibrary() { | 10474 RawLibrary* Library::TypedDataLibrary() { |
| 10470 return Isolate::Current()->object_store()->typed_data_library(); | 10475 return Isolate::Current()->object_store()->typed_data_library(); |
| 10471 } | 10476 } |
| 10472 | 10477 |
| 10473 | 10478 |
| 10474 RawLibrary* Library::VMServiceLibrary() { | 10479 RawLibrary* Library::VMServiceLibrary() { |
| 10475 return Isolate::Current()->object_store()->vmservice_library(); | 10480 return Isolate::Current()->object_store()->vmservice_library(); |
| 10476 } | 10481 } |
| 10477 | 10482 |
| 10478 | 10483 |
| (...skipping 11462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21941 return tag_label.ToCString(); | 21946 return tag_label.ToCString(); |
| 21942 } | 21947 } |
| 21943 | 21948 |
| 21944 | 21949 |
| 21945 void UserTag::PrintJSONImpl(JSONStream* stream, bool ref) const { | 21950 void UserTag::PrintJSONImpl(JSONStream* stream, bool ref) const { |
| 21946 Instance::PrintJSONImpl(stream, ref); | 21951 Instance::PrintJSONImpl(stream, ref); |
| 21947 } | 21952 } |
| 21948 | 21953 |
| 21949 | 21954 |
| 21950 } // namespace dart | 21955 } // namespace dart |
| OLD | NEW |