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

Unified Diff: src/parsing/preparser.h

Issue 2642843002: Revert of [Ignition/turbo] Add a CallWithSpread bytecode. (Closed)
Patch Set: 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/parsing/parser-base.h ('k') | src/runtime/runtime.h » ('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 35132104c72294306a9ccc6ad593f8d0c2ea7c0c..db2edf7935ec1bd788b3c45aacd1a616b7071447 100644
--- a/src/parsing/preparser.h
+++ b/src/parsing/preparser.h
@@ -988,8 +988,7 @@
V8_INLINE PreParserExpression SpreadCall(PreParserExpression function,
PreParserExpressionList args,
- int pos,
- Call::PossiblyEval possibly_eval);
+ int pos);
V8_INLINE PreParserExpression SpreadCallNew(PreParserExpression function,
PreParserExpressionList args,
int pos);
@@ -1613,9 +1612,9 @@
};
PreParserExpression PreParser::SpreadCall(PreParserExpression function,
- PreParserExpressionList args, int pos,
- Call::PossiblyEval possibly_eval) {
- return factory()->NewCall(function, args, pos, possibly_eval);
+ PreParserExpressionList args,
+ int pos) {
+ return factory()->NewCall(function, args, pos);
}
PreParserExpression PreParser::SpreadCallNew(PreParserExpression function,
« no previous file with comments | « src/parsing/parser-base.h ('k') | src/runtime/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698