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

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

Issue 14173005: Update dart:mirrors to use Symbol. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Also use _symbol_dev.Symbol.getName in dart2js Created 7 years, 8 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 | « dart/runtime/vm/bootstrap.cc ('k') | dart/runtime/vm/vm.gypi » ('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/bigint_operations.h" 10 #include "vm/bigint_operations.h"
(...skipping 996 matching lines...) Expand 10 before | Expand all | Expand 10 after
1007 cls = dynamic_class(); 1007 cls = dynamic_class();
1008 type = Type::NewNonParameterizedType(cls); 1008 type = Type::NewNonParameterizedType(cls);
1009 object_store->set_dynamic_type(type); 1009 object_store->set_dynamic_type(type);
1010 1010
1011 // Finish the initialization by compiling the bootstrap scripts containing the 1011 // Finish the initialization by compiling the bootstrap scripts containing the
1012 // base interfaces and the implementation of the internal classes. 1012 // base interfaces and the implementation of the internal classes.
1013 INIT_LIBRARY(Core, core, true); 1013 INIT_LIBRARY(Core, core, true);
1014 1014
1015 INIT_LIBRARY(Async, async, true); 1015 INIT_LIBRARY(Async, async, true);
1016 INIT_LIBRARY(Collection, collection, true); 1016 INIT_LIBRARY(Collection, collection, true);
1017 INIT_LIBRARY(CollectionDev, collection_dev, false); 1017 INIT_LIBRARY(CollectionDev, collection_dev, true);
1018 INIT_LIBRARY(Crypto, crypto, false); 1018 INIT_LIBRARY(Crypto, crypto, false);
1019 INIT_LIBRARY(Isolate, isolate, true); 1019 INIT_LIBRARY(Isolate, isolate, true);
1020 INIT_LIBRARY(Json, json, true); 1020 INIT_LIBRARY(Json, json, true);
1021 INIT_LIBRARY(Math, math, true); 1021 INIT_LIBRARY(Math, math, true);
1022 INIT_LIBRARY(Mirrors, mirrors, true); 1022 INIT_LIBRARY(Mirrors, mirrors, true);
1023 INIT_LIBRARY(TypedData, typeddata, true); 1023 INIT_LIBRARY(TypedData, typeddata, true);
1024 INIT_LIBRARY(Utf, utf, false); 1024 INIT_LIBRARY(Utf, utf, false);
1025 INIT_LIBRARY(Uri, uri, false); 1025 INIT_LIBRARY(Uri, uri, false);
1026 1026
1027 Bootstrap::SetupNativeResolver(); 1027 Bootstrap::SetupNativeResolver();
(...skipping 12065 matching lines...) Expand 10 before | Expand all | Expand 10 after
13093 } 13093 }
13094 return result.raw(); 13094 return result.raw();
13095 } 13095 }
13096 13096
13097 13097
13098 const char* WeakProperty::ToCString() const { 13098 const char* WeakProperty::ToCString() const {
13099 return "_WeakProperty"; 13099 return "_WeakProperty";
13100 } 13100 }
13101 13101
13102 } // namespace dart 13102 } // namespace dart
OLDNEW
« no previous file with comments | « dart/runtime/vm/bootstrap.cc ('k') | dart/runtime/vm/vm.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698