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

Unified Diff: lib/compiler/implementation/lib/isolate_patch.dart

Issue 10905305: Patch refactoring. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased. Created 8 years, 2 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: 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 4a38f51ac92ce3878d957742f83c1aa3d40ea305..033384b591e5c4f116748c8290a638306199899f 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 r"""
""";
ReceivePort _lazyPort;
-patch ReceivePort get port {
+patch ReceivePort get port() {
Lasse Reichstein Nielsen 2012/10/09 11:04:35 Wut? There should not be parentheses after getters
if (_lazyPort === null) {
_lazyPort = new ReceivePort();
}

Powered by Google App Engine
This is Rietveld 408576698