| 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 8384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8395 RawLibrary* Library::CoreLibrary() { | 8395 RawLibrary* Library::CoreLibrary() { |
| 8396 return Isolate::Current()->object_store()->core_library(); | 8396 return Isolate::Current()->object_store()->core_library(); |
| 8397 } | 8397 } |
| 8398 | 8398 |
| 8399 | 8399 |
| 8400 RawLibrary* Library::CollectionLibrary() { | 8400 RawLibrary* Library::CollectionLibrary() { |
| 8401 return Isolate::Current()->object_store()->collection_library(); | 8401 return Isolate::Current()->object_store()->collection_library(); |
| 8402 } | 8402 } |
| 8403 | 8403 |
| 8404 | 8404 |
| 8405 RawLibrary* Library::CollectionDevLibrary() { | 8405 RawLibrary* Library::InternalLibrary() { |
| 8406 return Isolate::Current()->object_store()->collection_dev_library(); | 8406 return Isolate::Current()->object_store()->internal_library(); |
| 8407 } | 8407 } |
| 8408 | 8408 |
| 8409 | 8409 |
| 8410 RawLibrary* Library::IsolateLibrary() { | 8410 RawLibrary* Library::IsolateLibrary() { |
| 8411 return Isolate::Current()->object_store()->isolate_library(); | 8411 return Isolate::Current()->object_store()->isolate_library(); |
| 8412 } | 8412 } |
| 8413 | 8413 |
| 8414 | 8414 |
| 8415 RawLibrary* Library::MathLibrary() { | 8415 RawLibrary* Library::MathLibrary() { |
| 8416 return Isolate::Current()->object_store()->math_library(); | 8416 return Isolate::Current()->object_store()->math_library(); |
| (...skipping 8557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 16974 return "_MirrorReference"; | 16974 return "_MirrorReference"; |
| 16975 } | 16975 } |
| 16976 | 16976 |
| 16977 | 16977 |
| 16978 void MirrorReference::PrintToJSONStream(JSONStream* stream, bool ref) const { | 16978 void MirrorReference::PrintToJSONStream(JSONStream* stream, bool ref) const { |
| 16979 Instance::PrintToJSONStream(stream, ref); | 16979 Instance::PrintToJSONStream(stream, ref); |
| 16980 } | 16980 } |
| 16981 | 16981 |
| 16982 | 16982 |
| 16983 } // namespace dart | 16983 } // namespace dart |
| OLD | NEW |