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

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

Issue 133893007: Rename internal library dart:_collection-dev to dart:_internal. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typo in dart2js Symbol lookup. Created 6 years, 11 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
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 8384 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698