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

Unified Diff: src/parsing/preparser.h

Issue 2124813002: [debugger] omit exception events for rethrown exceptions in async. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: addressed comments Created 4 years, 5 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/parsing/parser-base.h ('k') | test/mjsunit/harmony/async-debug-caught-exception.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/parsing/preparser.h
diff --git a/src/parsing/preparser.h b/src/parsing/preparser.h
index 46835cafb9e4b5503d88438fb6222d532d65acc5..71ed1fdb274c5eb7922f7736345775312f9de8c6 100644
--- a/src/parsing/preparser.h
+++ b/src/parsing/preparser.h
@@ -502,8 +502,8 @@ class PreParserFactory {
return PreParserExpression::Assignment();
}
PreParserExpression NewYield(PreParserExpression generator_object,
- PreParserExpression expression,
- int pos) {
+ PreParserExpression expression, int pos,
+ Yield::OnException on_exception) {
return PreParserExpression::Default();
}
PreParserExpression NewConditional(PreParserExpression condition,
« no previous file with comments | « src/parsing/parser-base.h ('k') | test/mjsunit/harmony/async-debug-caught-exception.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698