Index: pkg/front_end/lib/src/fasta/builder/mixin_application_builder.dart |
diff --git a/pkg/front_end/lib/src/fasta/builder/mixin_application_builder.dart b/pkg/front_end/lib/src/fasta/builder/mixin_application_builder.dart |
index 230faa40cd3bbdbf735c3fd174bf3f2af15d22f7..1f4881bb067c64e59688afb281f13bc5006b7c77 100644 |
--- a/pkg/front_end/lib/src/fasta/builder/mixin_application_builder.dart |
+++ b/pkg/front_end/lib/src/fasta/builder/mixin_application_builder.dart |
@@ -4,7 +4,7 @@ |
library fasta.mixin_application_builder; |
-import '../deprecated_problems.dart' show deprecated_internalProblem; |
+import '../problems.dart' show unsupported; |
import 'builder.dart' |
show Scope, TypeBuilder, TypeDeclarationBuilder, TypeVariableBuilder; |
@@ -38,8 +38,7 @@ abstract class MixinApplicationBuilder<T extends TypeBuilder> |
} |
void bind(TypeDeclarationBuilder builder) { |
- deprecated_internalProblem( |
- "Internal error: can't bind a mixin application."); |
+ unsupported("bind", -1, null); |
} |
String get debugName => "MixinApplicationBuilder"; |