Index: src/interpreter/bytecode-array-builder.h |
diff --git a/src/interpreter/bytecode-array-builder.h b/src/interpreter/bytecode-array-builder.h |
index 69e4ede6673541f0812bcb141ba4ffdb625ee75c..256c5ff0ed66c68e2dee326dfdf794bcd3bd6ddb 100644 |
--- a/src/interpreter/bytecode-array-builder.h |
+++ b/src/interpreter/bytecode-array-builder.h |
@@ -177,6 +177,9 @@ class V8_EXPORT_PRIVATE BytecodeArrayBuilder final |
// Create a new context with size |slots|. |
BytecodeArrayBuilder& CreateFunctionContext(int slots); |
+ // Create a new eval context with size |slots|. |
+ BytecodeArrayBuilder& CreateEvalContext(int slots); |
+ |
// Creates a new context with the given |scope_info| for a with-statement |
// with the |object| in a register and the closure in the accumulator. |
BytecodeArrayBuilder& CreateWithContext(Register object, |