Index: src/code-factory.h |
diff --git a/src/code-factory.h b/src/code-factory.h |
index 986298cc7be87f41738b143801e72c21f56bf980..7ee63bd656cacd34c5be6897e470de98dc0bd052 100644 |
--- a/src/code-factory.h |
+++ b/src/code-factory.h |
@@ -125,9 +125,12 @@ class CodeFactory final { |
static Callable FastNewClosure(Isolate* isolate, LanguageMode language_mode, |
FunctionKind kind); |
static Callable FastNewObject(Isolate* isolate); |
- static Callable FastNewRestParameter(Isolate* isolate); |
- static Callable FastNewSloppyArguments(Isolate* isolate); |
- static Callable FastNewStrictArguments(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 AllocateHeapNumber(Isolate* isolate); |
static Callable AllocateMutableHeapNumber(Isolate* isolate); |