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

Side by Side Diff: vm/symbols.h

Issue 10837298: Add a symbol for PatchClass as it currently has a null for the name. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 4 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 | « vm/object.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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 V(Resource, "resource") \ 55 V(Resource, "resource") \
56 V(Class, "Class") \ 56 V(Class, "Class") \
57 V(Null, "Null") \ 57 V(Null, "Null") \
58 V(Dynamic, "Dynamic") \ 58 V(Dynamic, "Dynamic") \
59 V(Void, "void") \ 59 V(Void, "void") \
60 V(UnresolvedClass, "UnresolvedClass") \ 60 V(UnresolvedClass, "UnresolvedClass") \
61 V(Type, "Type") \ 61 V(Type, "Type") \
62 V(TypeParameter, "TypeParameter") \ 62 V(TypeParameter, "TypeParameter") \
63 V(TypeArguments, "TypeArguments") \ 63 V(TypeArguments, "TypeArguments") \
64 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \ 64 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \
65 V(PatchClass, "PatchClass") \
65 V(Function, "Function") \ 66 V(Function, "Function") \
66 V(Field, "Field") \ 67 V(Field, "Field") \
67 V(LiteralToken, "LiteralToken") \ 68 V(LiteralToken, "LiteralToken") \
68 V(TokenStream, "TokenStream") \ 69 V(TokenStream, "TokenStream") \
69 V(Script, "Script") \ 70 V(Script, "Script") \
70 V(LibraryClass, "Library") \ 71 V(LibraryClass, "Library") \
71 V(LibraryPrefix, "LibraryPrefix") \ 72 V(LibraryPrefix, "LibraryPrefix") \
72 V(Code, "Code") \ 73 V(Code, "Code") \
73 V(Instructions, "Instructions") \ 74 V(Instructions, "Instructions") \
74 V(PcDescriptors, "PcDescriptors") \ 75 V(PcDescriptors, "PcDescriptors") \
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 friend class SnapshotReader; 208 friend class SnapshotReader;
208 friend class SnapshotWriter; 209 friend class SnapshotWriter;
209 friend class ApiMessageReader; 210 friend class ApiMessageReader;
210 211
211 DISALLOW_COPY_AND_ASSIGN(Symbols); 212 DISALLOW_COPY_AND_ASSIGN(Symbols);
212 }; 213 };
213 214
214 } // namespace dart 215 } // namespace dart
215 216
216 #endif // VM_SYMBOLS_H_ 217 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « vm/object.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698