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

Unified Diff: src/parsing/preparser.h

Issue 2893313002: [inspector] removed call break location from for-of loop (Closed)
Patch Set: removed each_keyword_pos Created 3 years, 7 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/parsing/preparser.h
diff --git a/src/parsing/preparser.h b/src/parsing/preparser.h
index 163d2a6a81b7df1f8a9444a308d9e5eec8300f40..5b306d519a028026a29483f1d23529e8d15d3ce2 100644
--- a/src/parsing/preparser.h
+++ b/src/parsing/preparser.h
@@ -1307,10 +1307,9 @@ class PreParser : public ParserBase<PreParser> {
return PreParserStatement::Default();
}
- V8_INLINE PreParserStatement
- InitializeForEachStatement(PreParserStatement stmt, PreParserExpression each,
- PreParserExpression subject,
- PreParserStatement body, int each_keyword_pos) {
+ V8_INLINE PreParserStatement InitializeForEachStatement(
+ PreParserStatement stmt, PreParserExpression each,
+ PreParserExpression subject, PreParserStatement body) {
MarkExpressionAsAssigned(each);
return stmt;
}

Powered by Google App Engine
This is Rietveld 408576698