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

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

Issue 1016833002: Fix await/async/yield keyword recognition (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 9 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 | « 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 V(StackTraceParameter, ":stack_trace") \ 88 V(StackTraceParameter, ":stack_trace") \
89 V(ExceptionVar, ":exception_var") \ 89 V(ExceptionVar, ":exception_var") \
90 V(StackTraceVar, ":stack_trace_var") \ 90 V(StackTraceVar, ":stack_trace_var") \
91 V(SavedExceptionVar, ":saved_exception_var") \ 91 V(SavedExceptionVar, ":saved_exception_var") \
92 V(SavedStackTraceVar, ":saved_stack_trace_var") \ 92 V(SavedStackTraceVar, ":saved_stack_trace_var") \
93 V(ListLiteralElement, "list literal element") \ 93 V(ListLiteralElement, "list literal element") \
94 V(ForInIter, ":for-in-iter") \ 94 V(ForInIter, ":for-in-iter") \
95 V(Library, "library") \ 95 V(Library, "library") \
96 V(LoadLibrary, "loadLibrary") \ 96 V(LoadLibrary, "loadLibrary") \
97 V(_LibraryPrefix, "_LibraryPrefix") \ 97 V(_LibraryPrefix, "_LibraryPrefix") \
98 V(On, "on") \
99 V(Of, "of") \
100 V(Deferred, "deferred") \
101 V(Show, "show") \
102 V(Hide, "hide") \
98 V(Async, "async") \ 103 V(Async, "async") \
99 V(Sync, "sync") \ 104 V(Sync, "sync") \
100 V(YieldKw, "yield") \ 105 V(YieldKw, "yield") \
101 V(AsyncCompleter, ":async_completer") \ 106 V(AsyncCompleter, ":async_completer") \
102 V(AsyncOperation, ":async_op") \ 107 V(AsyncOperation, ":async_op") \
103 V(AsyncOperationParam, ":async_result") \ 108 V(AsyncOperationParam, ":async_result") \
104 V(AsyncOperationErrorParam, ":async_error_param") \ 109 V(AsyncOperationErrorParam, ":async_error_param") \
105 V(AsyncOperationStackTraceParam, ":async_stack_trace_param") \ 110 V(AsyncOperationStackTraceParam, ":async_stack_trace_param") \
106 V(AsyncSavedTryCtxVarPrefix, ":async_saved_try_ctx_var_") \ 111 V(AsyncSavedTryCtxVarPrefix, ":async_saved_try_ctx_var_") \
107 V(AsyncCatchHelper, "_asyncCatchHelper") \ 112 V(AsyncCatchHelper, "_asyncCatchHelper") \
(...skipping 17 matching lines...) Expand all
125 V(Null, "Null") \ 130 V(Null, "Null") \
126 V(Dynamic, "dynamic") \ 131 V(Dynamic, "dynamic") \
127 V(Void, "void") \ 132 V(Void, "void") \
128 V(UnresolvedClass, "UnresolvedClass") \ 133 V(UnresolvedClass, "UnresolvedClass") \
129 V(Type, "_Type") \ 134 V(Type, "_Type") \
130 V(TypeRef, "_TypeRef") \ 135 V(TypeRef, "_TypeRef") \
131 V(TypeParameter, "_TypeParameter") \ 136 V(TypeParameter, "_TypeParameter") \
132 V(BoundedType, "_BoundedType") \ 137 V(BoundedType, "_BoundedType") \
133 V(MixinAppType, "_MixinAppType") \ 138 V(MixinAppType, "_MixinAppType") \
134 V(TypeArguments, "TypeArguments") \ 139 V(TypeArguments, "TypeArguments") \
140 V(Patch, "patch") \
135 V(PatchClass, "PatchClass") \ 141 V(PatchClass, "PatchClass") \
136 V(Function, "Function") \ 142 V(Function, "Function") \
137 V(FunctionImpl, "_FunctionImpl") \ 143 V(FunctionImpl, "_FunctionImpl") \
138 V(FunctionResult, "function result") \ 144 V(FunctionResult, "function result") \
139 V(FactoryResult, "factory result") \ 145 V(FactoryResult, "factory result") \
140 V(ClosureData, "ClosureData") \ 146 V(ClosureData, "ClosureData") \
141 V(RedirectionData, "RedirectionData") \ 147 V(RedirectionData, "RedirectionData") \
142 V(Field, "Field") \ 148 V(Field, "Field") \
143 V(LiteralToken, "LiteralToken") \ 149 V(LiteralToken, "LiteralToken") \
144 V(TokenStream, "TokenStream") \ 150 V(TokenStream, "TokenStream") \
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 friend class SnapshotReader; 599 friend class SnapshotReader;
594 friend class SnapshotWriter; 600 friend class SnapshotWriter;
595 friend class ApiMessageReader; 601 friend class ApiMessageReader;
596 602
597 DISALLOW_COPY_AND_ASSIGN(Symbols); 603 DISALLOW_COPY_AND_ASSIGN(Symbols);
598 }; 604 };
599 605
600 } // namespace dart 606 } // namespace dart
601 607
602 #endif // VM_SYMBOLS_H_ 608 #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