Chromium Code Reviews| Index: compiler/java/com/google/dart/compiler/backend/isolate/DartIsolateStubGenerator.java |
| =================================================================== |
| --- compiler/java/com/google/dart/compiler/backend/isolate/DartIsolateStubGenerator.java (revision 626) |
| +++ compiler/java/com/google/dart/compiler/backend/isolate/DartIsolateStubGenerator.java (working copy) |
| @@ -271,13 +271,14 @@ |
| */ |
| private void generateProxyClass(DartClass clazz) { |
| String name = clazz.getClassName(); |
| +// p("interface " + name + "$Proxy extends Proxy {"); |
|
kasperl
2011/10/25 10:55:42
Intentional? Is this code supposed to be in or out
|
| p("interface " + name + "$Proxy {"); |
| printProxyInterfaceFunctions(clazz); |
| p("}"); |
| nl(); |
| nl(); |
| - p("class " + name + "$ProxyImpl extends Proxy implements " + name + "$Proxy {"); |
| + p("class " + name + "$ProxyImpl extends ProxyImpl implements " + name + "$Proxy {"); |
| nl(); |
| p(" " + name + "$ProxyImpl(Promise<SendPort> port) : super.forReply(port) { }"); |
| nl(); |