| Index: sdk/lib/_internal/compiler/implementation/typechecker.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/typechecker.dart b/sdk/lib/_internal/compiler/implementation/typechecker.dart
|
| index b89ce75a6035b08eba8aeb99252bd008d83d5107..4c49b7410d54a88dcd5eb5aa68ee9725805aadd0 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/typechecker.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/typechecker.dart
|
| @@ -800,6 +800,14 @@ class TypeCheckerVisitor implements Visitor<DartType> {
|
| fail(node);
|
| }
|
|
|
| + DartType visitMixinApplication(MixinApplication node) {
|
| + fail(node);
|
| + }
|
| +
|
| + DartType visitNamedMixinApplication(NamedMixinApplication node) {
|
| + fail(node);
|
| + }
|
| +
|
| DartType visitDoWhile(DoWhile node) {
|
| StatementType bodyType = analyze(node.body);
|
| checkCondition(node.condition);
|
|
|