Chromium Code Reviews| Index: lib/compiler/implementation/lib/isolate_patch.dart |
| diff --git a/lib/compiler/implementation/lib/isolate_patch.dart b/lib/compiler/implementation/lib/isolate_patch.dart |
| index c019dee64b2ee35d2e6dd5500c800cca0c49521f..a88c7e619835d35edf9a27f2ad28e9e60e32fb34 100644 |
| --- a/lib/compiler/implementation/lib/isolate_patch.dart |
| +++ b/lib/compiler/implementation/lib/isolate_patch.dart |
| @@ -94,7 +94,7 @@ void _fillStatics(context) native @""" |
| """; |
| ReceivePort _lazyPort; |
| -patch ReceivePort get port { |
| +patch ReceivePort get port() { |
|
Mads Ager (google)
2012/09/17 05:52:56
Can this go the other way instead? That is, can we
Lasse Reichstein Nielsen
2012/09/17 11:32:43
I think we can, and should.
Remove ALL the getter
Johnni Winther
2012/09/19 09:03:30
I'll do that after the patch refactoring.
ahe
2012/09/19 09:39:13
I'm sorry, I don't think that is the right order.
|
| if (_lazyPort === null) { |
| _lazyPort = new ReceivePort(); |
| } |