| Index: sdk/lib/_internal/lib/js_rti.dart
|
| diff --git a/sdk/lib/_internal/lib/js_rti.dart b/sdk/lib/_internal/lib/js_rti.dart
|
| index ea01f76a141ffb51eb8d921530cba714d200566d..d7c28e0f0a32ed9847a5affe1b0e7bc083523ce0 100644
|
| --- a/sdk/lib/_internal/lib/js_rti.dart
|
| +++ b/sdk/lib/_internal/lib/js_rti.dart
|
| @@ -66,6 +66,20 @@ class TypeImpl implements Type {
|
| }
|
| }
|
|
|
| +/**
|
| + * Represents a type variable.
|
| + *
|
| + * This class holds the information needed when reflecting on generic classes
|
| + * and their members.
|
| + */
|
| +class TypeVariable {
|
| + final Type owner;
|
| + final String name;
|
| + final int bound;
|
| +
|
| + const TypeVariable(this.owner, this.name, this.bound);
|
| +}
|
| +
|
| getMangledTypeName(TypeImpl type) => type._typeName;
|
|
|
| /**
|
|
|