Index: src/ast.cc |
diff --git a/src/ast.cc b/src/ast.cc |
index 2d4d3d57bf3805faee5fad1b055cd1dcf5255168..02c264fa29507ac16a2352372a195e9e701c8cc6 100644 |
--- a/src/ast.cc |
+++ b/src/ast.cc |
@@ -152,13 +152,6 @@ bool FunctionLiteral::uses_super_property() const { |
} |
-bool FunctionLiteral::uses_super_constructor_call() const { |
- DCHECK_NOT_NULL(scope()); |
- return scope()->uses_super_constructor_call() || |
- scope()->inner_uses_super_constructor_call(); |
-} |
- |
- |
// Helper to find an existing shared function info in the baseline code for the |
// given function literal. Used to canonicalize SharedFunctionInfo objects. |
void FunctionLiteral::InitializeSharedInfo( |