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

Unified Diff: src/code-factory.h

Issue 2645743002: [builtins] Port parameter and argument-related code stubs to CSA (Closed)
Patch Set: Remove stray change 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
Index: src/code-factory.h
diff --git a/src/code-factory.h b/src/code-factory.h
index 99fa4bd4633af361d2f835de3f420608cd81a64b..ffe3d3efe0ead5d5565ea89f1d22e9fe74b69862 100644
--- a/src/code-factory.h
+++ b/src/code-factory.h
@@ -145,12 +145,9 @@ class V8_EXPORT_PRIVATE CodeFactory final {
ScopeType scope_type);
static Callable FastNewClosure(Isolate* isolate);
static Callable FastNewObject(Isolate* isolate);
- static Callable FastNewRestParameter(Isolate* isolate,
- bool skip_stub_frame = false);
- static Callable FastNewSloppyArguments(Isolate* isolate,
- bool skip_stub_frame = false);
- static Callable FastNewStrictArguments(Isolate* isolate,
- bool skip_stub_frame = false);
+ static Callable FastNewRestParameter(Isolate* isolate);
+ static Callable FastNewSloppyArguments(Isolate* isolate);
+ static Callable FastNewStrictArguments(Isolate* isolate);
static Callable CopyFastSmiOrObjectElements(Isolate* isolate);
static Callable GrowFastDoubleElements(Isolate* isolate);

Powered by Google App Engine
This is Rietveld 408576698