| Index: pkg/front_end/lib/src/fasta/kernel/kernel_mixin_application_builder.dart
|
| diff --git a/pkg/front_end/lib/src/fasta/kernel/kernel_mixin_application_builder.dart b/pkg/front_end/lib/src/fasta/kernel/kernel_mixin_application_builder.dart
|
| index 9868219f7539ad79f9ec604dac39609e1f4437f9..0efd3097cab4832b4e4f53288868d00b92aa41de 100644
|
| --- a/pkg/front_end/lib/src/fasta/kernel/kernel_mixin_application_builder.dart
|
| +++ b/pkg/front_end/lib/src/fasta/kernel/kernel_mixin_application_builder.dart
|
| @@ -6,7 +6,7 @@ library fasta.kernel_mixin_application_builder;
|
|
|
| import 'package:kernel/ast.dart' show InterfaceType, Supertype;
|
|
|
| -import '../deprecated_problems.dart' show deprecated_internalProblem;
|
| +import '../problems.dart' show unsupported;
|
|
|
| import '../util/relativize.dart' show relativizeUri;
|
|
|
| @@ -40,10 +40,10 @@ class KernelMixinApplicationBuilder
|
| super(supertype, mixins, charOffset, fileUri);
|
|
|
| InterfaceType build(LibraryBuilder library) {
|
| - return deprecated_internalProblem("Unsupported operation.");
|
| + return unsupported("build", charOffset, fileUri);
|
| }
|
|
|
| Supertype buildSupertype(LibraryBuilder library) {
|
| - return deprecated_internalProblem("Unsupported operation.");
|
| + return unsupported("buildSupertype", charOffset, fileUri);
|
| }
|
| }
|
|
|