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

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

Issue 423213005: Reland transformation of async functions. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 V(SavedTryContextVar, ":saved_try_context_var") \ 61 V(SavedTryContextVar, ":saved_try_context_var") \
62 V(ExceptionVar, ":exception_var") \ 62 V(ExceptionVar, ":exception_var") \
63 V(StackTraceVar, ":stack_trace_var") \ 63 V(StackTraceVar, ":stack_trace_var") \
64 V(ListLiteralElement, "list literal element") \ 64 V(ListLiteralElement, "list literal element") \
65 V(ForInIter, ":for-in-iter") \ 65 V(ForInIter, ":for-in-iter") \
66 V(ClosureFunctionField, ":function") \ 66 V(ClosureFunctionField, ":function") \
67 V(ClosureContextField, ":context") \ 67 V(ClosureContextField, ":context") \
68 V(Library, "library") \ 68 V(Library, "library") \
69 V(LoadLibrary, "loadLibrary") \ 69 V(LoadLibrary, "loadLibrary") \
70 V(_LibraryPrefix, "_LibraryPrefix") \ 70 V(_LibraryPrefix, "_LibraryPrefix") \
71 V(Async, "async") \
72 V(AsyncCompleter, ":async_completer") \
73 V(AsyncOperation, ":async_op") \
74 V(Future, "Future") \
75 V(FutureConstructor, "Future.") \
76 V(Completer, "Completer") \
77 V(CompleterComplete, "complete") \
78 V(CompleterConstructor, "Completer.") \
79 V(CompleterFuture, "future") \
71 V(Native, "native") \ 80 V(Native, "native") \
72 V(Import, "import") \ 81 V(Import, "import") \
73 V(Source, "source") \ 82 V(Source, "source") \
74 V(Class, "Class") \ 83 V(Class, "Class") \
75 V(Null, "Null") \ 84 V(Null, "Null") \
76 V(Dynamic, "dynamic") \ 85 V(Dynamic, "dynamic") \
77 V(Void, "void") \ 86 V(Void, "void") \
78 V(UnresolvedClass, "UnresolvedClass") \ 87 V(UnresolvedClass, "UnresolvedClass") \
79 V(Type, "_Type") \ 88 V(Type, "_Type") \
80 V(TypeRef, "_TypeRef") \ 89 V(TypeRef, "_TypeRef") \
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
539 friend class SnapshotReader; 548 friend class SnapshotReader;
540 friend class SnapshotWriter; 549 friend class SnapshotWriter;
541 friend class ApiMessageReader; 550 friend class ApiMessageReader;
542 551
543 DISALLOW_COPY_AND_ASSIGN(Symbols); 552 DISALLOW_COPY_AND_ASSIGN(Symbols);
544 }; 553 };
545 554
546 } // namespace dart 555 } // namespace dart
547 556
548 #endif // VM_SYMBOLS_H_ 557 #endif // VM_SYMBOLS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698