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..ed4e689fe73a10f7bb0e61fc51e0ab505161de8a 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. |
+ UNREACHABLE(); |
Igor Sheludko
2014/10/17 08:40:34
UNIMPLEMENTED(); (UNREACHABLE is expanded to no-op
Dmitry Lomov (no reviews)
2014/10/17 09:15:47
Done.
|
+ break; |
+ } |
case Call::POSSIBLY_EVAL_CALL: |
possibly_eval = true; |
// Fall through. |