| 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 10246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10257 RawLibrary* Library::MirrorsLibrary() { | 10257 RawLibrary* Library::MirrorsLibrary() { |
| 10258 return Isolate::Current()->object_store()->mirrors_library(); | 10258 return Isolate::Current()->object_store()->mirrors_library(); |
| 10259 } | 10259 } |
| 10260 | 10260 |
| 10261 | 10261 |
| 10262 RawLibrary* Library::NativeWrappersLibrary() { | 10262 RawLibrary* Library::NativeWrappersLibrary() { |
| 10263 return Isolate::Current()->object_store()->native_wrappers_library(); | 10263 return Isolate::Current()->object_store()->native_wrappers_library(); |
| 10264 } | 10264 } |
| 10265 | 10265 |
| 10266 | 10266 |
| 10267 RawLibrary* Library::ProfilerLibrary() { | |
| 10268 return Isolate::Current()->object_store()->profiler_library(); | |
| 10269 } | |
| 10270 | |
| 10271 | |
| 10272 RawLibrary* Library::TypedDataLibrary() { | 10267 RawLibrary* Library::TypedDataLibrary() { |
| 10273 return Isolate::Current()->object_store()->typed_data_library(); | 10268 return Isolate::Current()->object_store()->typed_data_library(); |
| 10274 } | 10269 } |
| 10275 | 10270 |
| 10276 | 10271 |
| 10277 RawLibrary* Library::VMServiceLibrary() { | 10272 RawLibrary* Library::VMServiceLibrary() { |
| 10278 return Isolate::Current()->object_store()->vmservice_library(); | 10273 return Isolate::Current()->object_store()->vmservice_library(); |
| 10279 } | 10274 } |
| 10280 | 10275 |
| 10281 | 10276 |
| (...skipping 11257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21539 return tag_label.ToCString(); | 21534 return tag_label.ToCString(); |
| 21540 } | 21535 } |
| 21541 | 21536 |
| 21542 | 21537 |
| 21543 void UserTag::PrintJSONImpl(JSONStream* stream, bool ref) const { | 21538 void UserTag::PrintJSONImpl(JSONStream* stream, bool ref) const { |
| 21544 Instance::PrintJSONImpl(stream, ref); | 21539 Instance::PrintJSONImpl(stream, ref); |
| 21545 } | 21540 } |
| 21546 | 21541 |
| 21547 | 21542 |
| 21548 } // namespace dart | 21543 } // namespace dart |
| OLD | NEW |