| Index: src/builtins/builtins.h
|
| diff --git a/src/builtins/builtins.h b/src/builtins/builtins.h
|
| index e78cc2a1f154bc3c43e06ccadba393cc1d1676f1..b4529f820e0697c8942be6558fc10a791bdbeea7 100644
|
| --- a/src/builtins/builtins.h
|
| +++ b/src/builtins/builtins.h
|
| @@ -90,6 +90,10 @@ namespace internal {
|
| ASM(JSBuiltinsConstructStub) \
|
| ASM(JSBuiltinsConstructStubForDerived) \
|
| TFS(FastNewClosure, BUILTIN, kNoExtraICState, FastNewClosure) \
|
| + TFS(FastNewFunctionContextEval, BUILTIN, kNoExtraICState, \
|
| + FastNewFunctionContext) \
|
| + TFS(FastNewFunctionContextFunction, BUILTIN, kNoExtraICState, \
|
| + FastNewFunctionContext) \
|
| \
|
| /* Apply and entries */ \
|
| ASM(Apply) \
|
| @@ -779,6 +783,7 @@ class Builtins {
|
| TailCallMode tail_call_mode,
|
| CallableType function_type = CallableType::kAny);
|
| Handle<Code> InterpreterPushArgsAndConstruct(CallableType function_type);
|
| + Handle<Code> NewFunctionContext(ScopeType scope_type);
|
|
|
| Code* builtin(Name name) {
|
| // Code::cast cannot be used here since we access builtins
|
|
|