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

Unified Diff: runtime/vm/symbols.h

Issue 542893004: Bubble up exceptions throw async/await. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: addressed comments Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/parser.cc ('k') | tests/language/await_exceptions_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/symbols.h
diff --git a/runtime/vm/symbols.h b/runtime/vm/symbols.h
index a64f3445d51cab658c5db4f4e80f05d162d91eb9..51818537f90dd542f90f10aed3110f8343931c25 100644
--- a/runtime/vm/symbols.h
+++ b/runtime/vm/symbols.h
@@ -60,6 +60,8 @@ class ObjectPointerVisitor;
V(SavedCurrentContextVar, ":saved_current_context_var") \
V(SavedEntryContextVar, ":saved_entry_context_var") \
V(SavedTryContextVar, ":saved_try_context_var") \
+ V(ExceptionParameter, ":exception") \
+ V(StackTraceParameter, ":stack_trace") \
V(ExceptionVar, ":exception_var") \
V(StackTraceVar, ":stack_trace_var") \
V(ListLiteralElement, "list literal element") \
@@ -71,14 +73,18 @@ class ObjectPointerVisitor;
V(AsyncCompleter, ":async_completer") \
V(AsyncOperation, ":async_op") \
V(AsyncOperationParam, ":async_result") \
+ V(AsyncOperationErrorParam, ":async_error_param") \
+ V(AsyncCatchHelper, "_asyncCatchHelper") \
V(Await, "await") \
V(AwaitContextVar, ":await_ctx_var") \
V(AwaitJumpVar, ":await_jump_var") \
V(Future, "Future") \
V(FutureConstructor, "Future.") \
V(FutureThen, "then") \
+ V(FutureCatchError, "catchError") \
V(Completer, "Completer") \
V(CompleterComplete, "complete") \
+ V(CompleterCompleteError, "completeError") \
V(CompleterConstructor, "Completer.") \
V(CompleterFuture, "future") \
V(Native, "native") \
« no previous file with comments | « runtime/vm/parser.cc ('k') | tests/language/await_exceptions_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698