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

Unified Diff: src/bailout-reason.h

Issue 2664083002: [ignition] desugar async functions/generators/modules in BytecodeGenerator
Patch Set: get rid of lambdas, for better or worse.. Created 3 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 side-by-side diff with in-line comments
Download patch
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 {

Powered by Google App Engine
This is Rietveld 408576698