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

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

Issue 1287673002: Don't delay values and errors from async/await functions. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Update comment. Created 5 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
« no previous file with comments | « runtime/vm/parser.cc ('k') | tests/lib/async/async_await_sync_completer_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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 V(AwaitContextVar, ":await_ctx_var") \ 112 V(AwaitContextVar, ":await_ctx_var") \
113 V(AwaitJumpVar, ":await_jump_var") \ 113 V(AwaitJumpVar, ":await_jump_var") \
114 V(Future, "Future") \ 114 V(Future, "Future") \
115 V(FutureMicrotask, "Future.microtask") \ 115 V(FutureMicrotask, "Future.microtask") \
116 V(FutureValue, "Future.value") \ 116 V(FutureValue, "Future.value") \
117 V(FutureThen, "then") \ 117 V(FutureThen, "then") \
118 V(FutureCatchError, "catchError") \ 118 V(FutureCatchError, "catchError") \
119 V(Completer, "Completer") \ 119 V(Completer, "Completer") \
120 V(CompleterComplete, "complete") \ 120 V(CompleterComplete, "complete") \
121 V(CompleterCompleteError, "completeError") \ 121 V(CompleterCompleteError, "completeError") \
122 V(CompleterConstructor, "Completer.") \ 122 V(CompleterSyncConstructor, "Completer.sync") \
123 V(CompleterFuture, "future") \ 123 V(CompleterFuture, "future") \
124 V(StreamIterator, "StreamIterator") \ 124 V(StreamIterator, "StreamIterator") \
125 V(StreamIteratorConstructor, "StreamIterator.") \ 125 V(StreamIteratorConstructor, "StreamIterator.") \
126 V(Native, "native") \ 126 V(Native, "native") \
127 V(Class, "Class") \ 127 V(Class, "Class") \
128 V(Null, "Null") \ 128 V(Null, "Null") \
129 V(Dynamic, "dynamic") \ 129 V(Dynamic, "dynamic") \
130 V(UnresolvedClass, "UnresolvedClass") \ 130 V(UnresolvedClass, "UnresolvedClass") \
131 V(Type, "_Type") \ 131 V(Type, "_Type") \
132 V(TypeRef, "_TypeRef") \ 132 V(TypeRef, "_TypeRef") \
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
632 friend class SnapshotReader; 632 friend class SnapshotReader;
633 friend class SnapshotWriter; 633 friend class SnapshotWriter;
634 friend class ApiMessageReader; 634 friend class ApiMessageReader;
635 635
636 DISALLOW_COPY_AND_ASSIGN(Symbols); 636 DISALLOW_COPY_AND_ASSIGN(Symbols);
637 }; 637 };
638 638
639 } // namespace dart 639 } // namespace dart
640 640
641 #endif // VM_SYMBOLS_H_ 641 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/parser.cc ('k') | tests/lib/async/async_await_sync_completer_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698