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

Unified Diff: pkg/compiler/lib/src/js_emitter/model.dart

Issue 2722753002: Remove HRuntimeType implementation (Closed)
Patch Set: Created 3 years, 10 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/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,

Powered by Google App Engine
This is Rietveld 408576698