| Index: src/interpreter/bytecodes.h
|
| diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h
|
| index effad8c6ea28b825832107a6e40308b66b2f3ee6..aa5234924152f24a25383d980b2685749bd4d2db 100644
|
| --- a/src/interpreter/bytecodes.h
|
| +++ b/src/interpreter/bytecodes.h
|
| @@ -308,9 +308,9 @@ class Register {
|
| static Register function_closure();
|
| bool is_function_closure() const;
|
|
|
| - // Returns the register for the function's outer context.
|
| - static Register function_context();
|
| - bool is_function_context() const;
|
| + // Returns the register which holds the current context object.
|
| + static Register current_context();
|
| + bool is_current_context() const;
|
|
|
| // Returns the register for the incoming new target value.
|
| static Register new_target();
|
|
|