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

Side by Side Diff: runtime/vm/symbols.h

Issue 154393003: Implement eager instantiation and canonicalization of type arguments at run (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 10 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
« runtime/vm/dart_api_impl.cc ('K') | « runtime/vm/stub_code_x64.cc ('k') | no next file » | 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 #ifndef VM_SYMBOLS_H_ 5 #ifndef VM_SYMBOLS_H_
6 #define VM_SYMBOLS_H_ 6 #define VM_SYMBOLS_H_
7 7
8 #include "vm/object.h" 8 #include "vm/object.h"
9 #include "vm/snapshot_ids.h" 9 #include "vm/snapshot_ids.h"
10 10
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 V(Null, "Null") \ 73 V(Null, "Null") \
74 V(Dynamic, "dynamic") \ 74 V(Dynamic, "dynamic") \
75 V(Void, "void") \ 75 V(Void, "void") \
76 V(UnresolvedClass, "UnresolvedClass") \ 76 V(UnresolvedClass, "UnresolvedClass") \
77 V(Type, "_Type") \ 77 V(Type, "_Type") \
78 V(TypeRef, "_TypeRef") \ 78 V(TypeRef, "_TypeRef") \
79 V(TypeParameter, "_TypeParameter") \ 79 V(TypeParameter, "_TypeParameter") \
80 V(BoundedType, "_BoundedType") \ 80 V(BoundedType, "_BoundedType") \
81 V(MixinAppType, "_MixinAppType") \ 81 V(MixinAppType, "_MixinAppType") \
82 V(TypeArguments, "TypeArguments") \ 82 V(TypeArguments, "TypeArguments") \
83 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \
84 V(PatchClass, "PatchClass") \ 83 V(PatchClass, "PatchClass") \
85 V(Function, "Function") \ 84 V(Function, "Function") \
86 V(FunctionImpl, "_FunctionImpl") \ 85 V(FunctionImpl, "_FunctionImpl") \
87 V(FunctionResult, "function result") \ 86 V(FunctionResult, "function result") \
88 V(FactoryResult, "factory result") \ 87 V(FactoryResult, "factory result") \
89 V(ClosureData, "ClosureData") \ 88 V(ClosureData, "ClosureData") \
90 V(RedirectionData, "RedirectionData") \ 89 V(RedirectionData, "RedirectionData") \
91 V(Field, "Field") \ 90 V(Field, "Field") \
92 V(LiteralToken, "LiteralToken") \ 91 V(LiteralToken, "LiteralToken") \
93 V(TokenStream, "TokenStream") \ 92 V(TokenStream, "TokenStream") \
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
520 friend class SnapshotReader; 519 friend class SnapshotReader;
521 friend class SnapshotWriter; 520 friend class SnapshotWriter;
522 friend class ApiMessageReader; 521 friend class ApiMessageReader;
523 522
524 DISALLOW_COPY_AND_ASSIGN(Symbols); 523 DISALLOW_COPY_AND_ASSIGN(Symbols);
525 }; 524 };
526 525
527 } // namespace dart 526 } // namespace dart
528 527
529 #endif // VM_SYMBOLS_H_ 528 #endif // VM_SYMBOLS_H_
OLDNEW
« runtime/vm/dart_api_impl.cc ('K') | « runtime/vm/stub_code_x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698