| Index: sdk/lib/_internal/compiler/implementation/js_backend/emitter.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/js_backend/emitter.dart b/sdk/lib/_internal/compiler/implementation/js_backend/emitter.dart
|
| index 2302aec5576d8b4dd92cbe738a3cf234332b6724..430c72e0f698205011849e717d7aec10cdc526a3 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/js_backend/emitter.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/js_backend/emitter.dart
|
| @@ -2029,6 +2029,9 @@ class CodeEmitterTask extends CompilerTask {
|
|
|
| bool haveSameTypeVariables(ClassElement a, ClassElement b) {
|
| if (a.isClosure()) return true;
|
| + if (b.isUnnamedMixinApplication) {
|
| + return false;
|
| + }
|
| return a.typeVariables == b.typeVariables;
|
| }
|
|
|
|
|