Index: pkg/compiler/lib/src/js_emitter/model.dart |
diff --git a/pkg/compiler/lib/src/js_emitter/model.dart b/pkg/compiler/lib/src/js_emitter/model.dart |
index b4473a68892bbfb1172e76389ec94e0f62dd327e..593798aead278c5c7c640caa7701eaee35b1f257 100644 |
--- a/pkg/compiler/lib/src/js_emitter/model.dart |
+++ b/pkg/compiler/lib/src/js_emitter/model.dart |
@@ -223,9 +223,6 @@ class Class implements FieldContainer { |
/// Stub methods for this class that are call stubs for getters. |
final List<StubMethod> callStubs; |
- /// Stub methods for this class handling reads to type variables. |
- final List<StubMethod> typeVariableReaderStubs; |
- |
/// noSuchMethod stubs in the special case that the class is Object. |
final List<StubMethod> noSuchMethodStubs; |
final List<Field> staticFieldsForReflection; |
@@ -258,7 +255,6 @@ class Class implements FieldContainer { |
this.fields, |
this.staticFieldsForReflection, |
this.callStubs, |
- this.typeVariableReaderStubs, |
this.noSuchMethodStubs, |
this.checkedSetters, |
this.isChecks, |
@@ -295,7 +291,6 @@ class MixinApplication extends Class { |
List<Field> instanceFields, |
List<Field> staticFieldsForReflection, |
List<StubMethod> callStubs, |
- List<StubMethod> typeVariableReaderStubs, |
List<StubMethod> checkedSetters, |
List<StubMethod> isChecks, |
js.Expression functionTypeIndex, |
@@ -310,7 +305,6 @@ class MixinApplication extends Class { |
instanceFields, |
staticFieldsForReflection, |
callStubs, |
- typeVariableReaderStubs, |
const <StubMethod>[], |
checkedSetters, |
isChecks, |