Index: src/compiler/ast-graph-builder.cc |
diff --git a/src/compiler/ast-graph-builder.cc b/src/compiler/ast-graph-builder.cc |
index 9c11c658a62763401f6f022078bd2b58751b8c62..ba10bf57f31f6a0594dfd226ee342e4c9a7bf24c 100644 |
--- a/src/compiler/ast-graph-builder.cc |
+++ b/src/compiler/ast-graph-builder.cc |
@@ -1261,6 +1261,11 @@ void AstGraphBuilder::VisitCall(Call* expr) { |
flags = CALL_AS_METHOD; |
break; |
} |
+ case Call::SUPER_CALL: { |
+ // todo(dslomov): implement super calls in turbofan. |
+ UNIMPLEMENTED(); |
+ break; |
+ } |
case Call::POSSIBLY_EVAL_CALL: |
possibly_eval = true; |
// Fall through. |