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

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

Issue 11360231: Create symbols for string constants. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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/parser.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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 V(Null, "Null") \ 68 V(Null, "Null") \
69 V(Dynamic, "dynamic") \ 69 V(Dynamic, "dynamic") \
70 V(Void, "void") \ 70 V(Void, "void") \
71 V(UnresolvedClass, "UnresolvedClass") \ 71 V(UnresolvedClass, "UnresolvedClass") \
72 V(Type, "_Type") \ 72 V(Type, "_Type") \
73 V(TypeParameter, "_TypeParameter") \ 73 V(TypeParameter, "_TypeParameter") \
74 V(TypeArguments, "TypeArguments") \ 74 V(TypeArguments, "TypeArguments") \
75 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \ 75 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \
76 V(PatchClass, "PatchClass") \ 76 V(PatchClass, "PatchClass") \
77 V(Function, "Function") \ 77 V(Function, "Function") \
78 V(FunctionResult, "function result") \
79 V(FactoryResult, "factory result") \
78 V(ClosureData, "ClosureData") \ 80 V(ClosureData, "ClosureData") \
79 V(RedirectionData, "RedirectionData") \ 81 V(RedirectionData, "RedirectionData") \
80 V(Field, "Field") \ 82 V(Field, "Field") \
81 V(LiteralToken, "LiteralToken") \ 83 V(LiteralToken, "LiteralToken") \
82 V(TokenStream, "TokenStream") \ 84 V(TokenStream, "TokenStream") \
83 V(Script, "Script") \ 85 V(Script, "Script") \
84 V(LibraryClass, "Library") \ 86 V(LibraryClass, "Library") \
85 V(LibraryPrefix, "LibraryPrefix") \ 87 V(LibraryPrefix, "LibraryPrefix") \
86 V(Namespace, "Namespace") \ 88 V(Namespace, "Namespace") \
87 V(Code, "Code") \ 89 V(Code, "Code") \
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 friend class SnapshotReader; 228 friend class SnapshotReader;
227 friend class SnapshotWriter; 229 friend class SnapshotWriter;
228 friend class ApiMessageReader; 230 friend class ApiMessageReader;
229 231
230 DISALLOW_COPY_AND_ASSIGN(Symbols); 232 DISALLOW_COPY_AND_ASSIGN(Symbols);
231 }; 233 };
232 234
233 } // namespace dart 235 } // namespace dart
234 236
235 #endif // VM_SYMBOLS_H_ 237 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698