Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1575)

Unified Diff: pkg/front_end/lib/src/fasta/builder/mixin_application_builder.dart

Issue 2974933002: Remove deprecated_internalProblem. (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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";

Powered by Google App Engine
This is Rietveld 408576698