| Index: src/compiler/ast-graph-builder.cc
|
| diff --git a/src/compiler/ast-graph-builder.cc b/src/compiler/ast-graph-builder.cc
|
| index 52d4a470f6f52955c6c916b3b973017e17a5b05b..600dc6019279b1496b8ccedb3d2f8db9f1056db5 100644
|
| --- a/src/compiler/ast-graph-builder.cc
|
| +++ b/src/compiler/ast-graph-builder.cc
|
| @@ -1158,6 +1158,12 @@ void AstGraphBuilder::VisitEmptyStatement(EmptyStatement* stmt) {
|
| }
|
|
|
|
|
| +void AstGraphBuilder::VisitSloppyBlockFunctionStatement(
|
| + SloppyBlockFunctionStatement* stmt) {
|
| + Visit(stmt->statement());
|
| +}
|
| +
|
| +
|
| void AstGraphBuilder::VisitIfStatement(IfStatement* stmt) {
|
| IfBuilder compare_if(this);
|
| VisitForTest(stmt->condition());
|
|
|