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

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

Issue 893193004: Propagate the stack trace of the inner-most throw when using async/await. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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
« runtime/vm/parser.cc ('K') | « 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 V(ListLiteralElement, "list literal element") \ 77 V(ListLiteralElement, "list literal element") \
78 V(ForInIter, ":for-in-iter") \ 78 V(ForInIter, ":for-in-iter") \
79 V(Library, "library") \ 79 V(Library, "library") \
80 V(LoadLibrary, "loadLibrary") \ 80 V(LoadLibrary, "loadLibrary") \
81 V(_LibraryPrefix, "_LibraryPrefix") \ 81 V(_LibraryPrefix, "_LibraryPrefix") \
82 V(Async, "async") \ 82 V(Async, "async") \
83 V(AsyncCompleter, ":async_completer") \ 83 V(AsyncCompleter, ":async_completer") \
84 V(AsyncOperation, ":async_op") \ 84 V(AsyncOperation, ":async_op") \
85 V(AsyncOperationParam, ":async_result") \ 85 V(AsyncOperationParam, ":async_result") \
86 V(AsyncOperationErrorParam, ":async_error_param") \ 86 V(AsyncOperationErrorParam, ":async_error_param") \
87 V(AsyncOperationStackTraceParam, ":async_stack_trace_param") \
87 V(AsyncCatchHelper, "_asyncCatchHelper") \ 88 V(AsyncCatchHelper, "_asyncCatchHelper") \
88 V(Await, "await") \ 89 V(Await, "await") \
89 V(AwaitContextVar, ":await_ctx_var") \ 90 V(AwaitContextVar, ":await_ctx_var") \
90 V(AwaitJumpVar, ":await_jump_var") \ 91 V(AwaitJumpVar, ":await_jump_var") \
91 V(Future, "Future") \ 92 V(Future, "Future") \
92 V(FutureMicrotask, "Future.microtask") \ 93 V(FutureMicrotask, "Future.microtask") \
93 V(FutureValue, "Future.value") \ 94 V(FutureValue, "Future.value") \
94 V(FutureThen, "then") \ 95 V(FutureThen, "then") \
95 V(FutureCatchError, "catchError") \ 96 V(FutureCatchError, "catchError") \
96 V(Completer, "Completer") \ 97 V(Completer, "Completer") \
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
574 friend class SnapshotReader; 575 friend class SnapshotReader;
575 friend class SnapshotWriter; 576 friend class SnapshotWriter;
576 friend class ApiMessageReader; 577 friend class ApiMessageReader;
577 578
578 DISALLOW_COPY_AND_ASSIGN(Symbols); 579 DISALLOW_COPY_AND_ASSIGN(Symbols);
579 }; 580 };
580 581
581 } // namespace dart 582 } // namespace dart
582 583
583 #endif // VM_SYMBOLS_H_ 584 #endif // VM_SYMBOLS_H_
OLDNEW
« runtime/vm/parser.cc ('K') | « runtime/vm/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698