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

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

Issue 103913005: Introduce class TypeRef in the VM to fully support recursive types. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years 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/snapshot.cc ('k') | tests/language/cyclic_type_test.dart » ('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 #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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 V(Library, "library") \ 68 V(Library, "library") \
69 V(Native, "native") \ 69 V(Native, "native") \
70 V(Import, "import") \ 70 V(Import, "import") \
71 V(Source, "source") \ 71 V(Source, "source") \
72 V(Class, "Class") \ 72 V(Class, "Class") \
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(TypeParameter, "_TypeParameter") \ 79 V(TypeParameter, "_TypeParameter") \
79 V(BoundedType, "_BoundedType") \ 80 V(BoundedType, "_BoundedType") \
80 V(MixinAppType, "_MixinAppType") \ 81 V(MixinAppType, "_MixinAppType") \
81 V(TypeArguments, "TypeArguments") \ 82 V(TypeArguments, "TypeArguments") \
82 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \ 83 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \
83 V(PatchClass, "PatchClass") \ 84 V(PatchClass, "PatchClass") \
84 V(Function, "Function") \ 85 V(Function, "Function") \
85 V(FunctionImpl, "_FunctionImpl") \ 86 V(FunctionImpl, "_FunctionImpl") \
86 V(FunctionResult, "function result") \ 87 V(FunctionResult, "function result") \
87 V(FactoryResult, "factory result") \ 88 V(FactoryResult, "factory result") \
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after
508 friend class SnapshotReader; 509 friend class SnapshotReader;
509 friend class SnapshotWriter; 510 friend class SnapshotWriter;
510 friend class ApiMessageReader; 511 friend class ApiMessageReader;
511 512
512 DISALLOW_COPY_AND_ASSIGN(Symbols); 513 DISALLOW_COPY_AND_ASSIGN(Symbols);
513 }; 514 };
514 515
515 } // namespace dart 516 } // namespace dart
516 517
517 #endif // VM_SYMBOLS_H_ 518 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/snapshot.cc ('k') | tests/language/cyclic_type_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698