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 9820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
9831 RawLibrary* Library::CoreLibrary() { | 9831 RawLibrary* Library::CoreLibrary() { |
9832 return Isolate::Current()->object_store()->core_library(); | 9832 return Isolate::Current()->object_store()->core_library(); |
9833 } | 9833 } |
9834 | 9834 |
9835 | 9835 |
9836 RawLibrary* Library::CollectionLibrary() { | 9836 RawLibrary* Library::CollectionLibrary() { |
9837 return Isolate::Current()->object_store()->collection_library(); | 9837 return Isolate::Current()->object_store()->collection_library(); |
9838 } | 9838 } |
9839 | 9839 |
9840 | 9840 |
9841 RawLibrary* Library::DebuggerLibrary() { | 9841 RawLibrary* Library::DeveloperLibrary() { |
9842 return Isolate::Current()->object_store()->debugger_library(); | 9842 return Isolate::Current()->object_store()->developer_library(); |
9843 } | 9843 } |
9844 | 9844 |
9845 | 9845 |
9846 RawLibrary* Library::InternalLibrary() { | 9846 RawLibrary* Library::InternalLibrary() { |
9847 return Isolate::Current()->object_store()->internal_library(); | 9847 return Isolate::Current()->object_store()->internal_library(); |
9848 } | 9848 } |
9849 | 9849 |
9850 | 9850 |
9851 RawLibrary* Library::IsolateLibrary() { | 9851 RawLibrary* Library::IsolateLibrary() { |
9852 return Isolate::Current()->object_store()->isolate_library(); | 9852 return Isolate::Current()->object_store()->isolate_library(); |
(...skipping 10872 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
20725 return tag_label.ToCString(); | 20725 return tag_label.ToCString(); |
20726 } | 20726 } |
20727 | 20727 |
20728 | 20728 |
20729 void UserTag::PrintJSONImpl(JSONStream* stream, bool ref) const { | 20729 void UserTag::PrintJSONImpl(JSONStream* stream, bool ref) const { |
20730 Instance::PrintJSONImpl(stream, ref); | 20730 Instance::PrintJSONImpl(stream, ref); |
20731 } | 20731 } |
20732 | 20732 |
20733 | 20733 |
20734 } // namespace dart | 20734 } // namespace dart |
OLD | NEW |