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

Unified Diff: src/bailout-reason.h

Issue 2654423004: [async-functions] support await expressions in finally statements (Closed)
Patch Set: I'd like to build with -Wunused-variables locally, but how!? Created 3 years, 11 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 | « src/ast/scopes.cc ('k') | src/compiler/ast-graph-builder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/bailout-reason.h
diff --git a/src/bailout-reason.h b/src/bailout-reason.h
index 27b1e5f8c795d3e8e953c8fb33b97a8309eb20c1..5450b14150bd57d8c5f68ca67bcbe9a1e7946179 100644
--- a/src/bailout-reason.h
+++ b/src/bailout-reason.h
@@ -269,7 +269,8 @@ namespace internal {
V(kShouldNotDirectlyEnterOsrFunction, \
"Should not directly enter OSR-compiled function") \
V(kUnexpectedReturnFromWasmTrap, \
- "Should not return after throwing a wasm trap")
+ "Should not return after throwing a wasm trap") \
+ V(kNonSimpleParameters, "Function has non-simple parameters")
#define ERROR_MESSAGES_CONSTANTS(C, T) C,
enum BailoutReason {
« no previous file with comments | « src/ast/scopes.cc ('k') | src/compiler/ast-graph-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698