| Index: sdk/lib/_internal/compiler/implementation/closure.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/closure.dart b/sdk/lib/_internal/compiler/implementation/closure.dart
|
| index 6df2cc604b6947d342b2b6c8f26b4570c600c67a..af7b796052274e35bee8921fcc8cf25d40cfbc05 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/closure.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/closure.dart
|
| @@ -80,6 +80,9 @@ class ClosureFieldElement extends ElementX {
|
| }
|
|
|
| class ClosureClassElement extends ClassElementX {
|
| + DartType rawType;
|
| + DartType thisType;
|
| +
|
| ClosureClassElement(SourceString name,
|
| Compiler compiler,
|
| this.methodElement,
|
| @@ -95,6 +98,7 @@ class ClosureClassElement extends ClassElementX {
|
| supertype = compiler.closureClass.computeType(compiler);
|
| interfaces = const Link<DartType>();
|
| allSupertypes = const Link<DartType>().prepend(supertype);
|
| + thisType = rawType = new InterfaceType(this);
|
| }
|
|
|
| bool isClosure() => true;
|
|
|