| 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 7910 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7921 | 7921 |
| 7922 RawLibrary* Library::MirrorsLibrary() { | 7922 RawLibrary* Library::MirrorsLibrary() { |
| 7923 return Isolate::Current()->object_store()->mirrors_library(); | 7923 return Isolate::Current()->object_store()->mirrors_library(); |
| 7924 } | 7924 } |
| 7925 | 7925 |
| 7926 | 7926 |
| 7927 RawLibrary* Library::NativeWrappersLibrary() { | 7927 RawLibrary* Library::NativeWrappersLibrary() { |
| 7928 return Isolate::Current()->object_store()->native_wrappers_library(); | 7928 return Isolate::Current()->object_store()->native_wrappers_library(); |
| 7929 } | 7929 } |
| 7930 | 7930 |
| 7931 RawLibrary* Library::PlatformLibrary() { | |
| 7932 return Isolate::Current()->object_store()->platform_library(); | |
| 7933 } | |
| 7934 | |
| 7935 | 7931 |
| 7936 RawLibrary* Library::TypedDataLibrary() { | 7932 RawLibrary* Library::TypedDataLibrary() { |
| 7937 return Isolate::Current()->object_store()->typed_data_library(); | 7933 return Isolate::Current()->object_store()->typed_data_library(); |
| 7938 } | 7934 } |
| 7939 | 7935 |
| 7940 | 7936 |
| 7941 RawLibrary* Library::UtfLibrary() { | 7937 RawLibrary* Library::UtfLibrary() { |
| 7942 return Isolate::Current()->object_store()->utf_library(); | 7938 return Isolate::Current()->object_store()->utf_library(); |
| 7943 } | 7939 } |
| 7944 | 7940 |
| (...skipping 7643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15588 return "_MirrorReference"; | 15584 return "_MirrorReference"; |
| 15589 } | 15585 } |
| 15590 | 15586 |
| 15591 | 15587 |
| 15592 void MirrorReference::PrintToJSONStream(JSONStream* stream, bool ref) const { | 15588 void MirrorReference::PrintToJSONStream(JSONStream* stream, bool ref) const { |
| 15593 JSONObject jsobj(stream); | 15589 JSONObject jsobj(stream); |
| 15594 } | 15590 } |
| 15595 | 15591 |
| 15596 | 15592 |
| 15597 } // namespace dart | 15593 } // namespace dart |
| OLD | NEW |