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

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

Issue 32683002: Add empty dart:platform library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 months 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 7898 matching lines...) Expand 10 before | Expand all | Expand 10 after
7909 7909
7910 RawLibrary* Library::MirrorsLibrary() { 7910 RawLibrary* Library::MirrorsLibrary() {
7911 return Isolate::Current()->object_store()->mirrors_library(); 7911 return Isolate::Current()->object_store()->mirrors_library();
7912 } 7912 }
7913 7913
7914 7914
7915 RawLibrary* Library::NativeWrappersLibrary() { 7915 RawLibrary* Library::NativeWrappersLibrary() {
7916 return Isolate::Current()->object_store()->native_wrappers_library(); 7916 return Isolate::Current()->object_store()->native_wrappers_library();
7917 } 7917 }
7918 7918
7919 RawLibrary* Library::PlatformLibrary() {
7920 return Isolate::Current()->object_store()->platform_library();
7921 }
7922
7919 7923
7920 RawLibrary* Library::TypedDataLibrary() { 7924 RawLibrary* Library::TypedDataLibrary() {
7921 return Isolate::Current()->object_store()->typed_data_library(); 7925 return Isolate::Current()->object_store()->typed_data_library();
7922 } 7926 }
7923 7927
7924 7928
7925 RawLibrary* Library::UtfLibrary() { 7929 RawLibrary* Library::UtfLibrary() {
7926 return Isolate::Current()->object_store()->utf_library(); 7930 return Isolate::Current()->object_store()->utf_library();
7927 } 7931 }
7928 7932
(...skipping 7630 matching lines...) Expand 10 before | Expand all | Expand 10 after
15559 return "_MirrorReference"; 15563 return "_MirrorReference";
15560 } 15564 }
15561 15565
15562 15566
15563 void MirrorReference::PrintToJSONStream(JSONStream* stream, bool ref) const { 15567 void MirrorReference::PrintToJSONStream(JSONStream* stream, bool ref) const {
15564 JSONObject jsobj(stream); 15568 JSONObject jsobj(stream);
15565 } 15569 }
15566 15570
15567 15571
15568 } // namespace dart 15572 } // 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