Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: runtime/vm/object.cc

Issue 50573002: Remove dart:platform library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/vm/object.h ('k') | runtime/vm/object_store.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « runtime/vm/object.h ('k') | runtime/vm/object_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698