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

Unified Diff: client/observable/observable.dart

Issue 8666012: Partial fix to client breakage (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 9 years, 1 month 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: client/observable/observable.dart
===================================================================
--- client/observable/observable.dart (revision 1770)
+++ client/observable/observable.dart (working copy)
@@ -60,8 +60,9 @@
return false;
}
- AbstractObservable([Observable this.parent = null])
- : uid = EventBatch.genUid(),
+ AbstractObservable([Observable parent = null])
+ : this.parent = parent,
+ uid = EventBatch.genUid(),
listeners = new List<ChangeListener>();
bool addChangeListener(ChangeListener listener) {

Powered by Google App Engine
This is Rietveld 408576698