Index: src/compiler/js-operator.h |
diff --git a/src/compiler/js-operator.h b/src/compiler/js-operator.h |
index 4846add6c4471240690004a2ad77c30588ab2ab4..88b2dd304e5422e2111503b48ffaf63fa5b9ca15 100644 |
--- a/src/compiler/js-operator.h |
+++ b/src/compiler/js-operator.h |
@@ -559,13 +559,12 @@ class JSOperatorBuilder final : public ZoneObject { |
const Operator* StackCheck(); |
- // TODO(titzer): nail down the static parts of each of these context flavors. |
const Operator* CreateFunctionContext(); |
const Operator* CreateCatchContext(const Handle<String>& name); |
const Operator* CreateWithContext(); |
- const Operator* CreateBlockContext(); |
+ const Operator* CreateBlockContext(const Handle<ScopeInfo>& scpope_info); |
const Operator* CreateModuleContext(); |
- const Operator* CreateScriptContext(); |
+ const Operator* CreateScriptContext(const Handle<ScopeInfo>& scpope_info); |
private: |
Zone* zone() const { return zone_; } |