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

Side by Side Diff: pkg/observe/lib/observe.dart

Issue 53743002: introduce ObservableList.listChanges to keep list changes separate from property changes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | pkg/observe/lib/src/change_notifier.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /** 5 /**
6 * Support for observing changes in model-view architectures. 6 * Support for observing changes in model-view architectures.
7 * 7 *
8 * **Warning:** This library is experimental, and APIs are subject to change. 8 * **Warning:** This library is experimental, and APIs are subject to change.
9 * 9 *
10 * This library is used to observe changes to [Observable] types. It also 10 * This library is used to observe changes to [Observable] types. It also
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 * [Tools](https://www.dartlang.org/polymer-dart/) exist to convert the first 75 * [Tools](https://www.dartlang.org/polymer-dart/) exist to convert the first
76 * form into the second form automatically, to get the best of both worlds. 76 * form into the second form automatically, to get the best of both worlds.
77 */ 77 */
78 library observe; 78 library observe;
79 79
80 export 'src/bind_property.dart'; 80 export 'src/bind_property.dart';
81 export 'src/change_notifier.dart'; 81 export 'src/change_notifier.dart';
82 export 'src/change_record.dart'; 82 export 'src/change_record.dart';
83 export 'src/compound_path_observer.dart'; 83 export 'src/compound_path_observer.dart';
84 export 'src/list_path_observer.dart'; 84 export 'src/list_path_observer.dart';
85 export 'src/list_diff.dart' show ListChangeRecord;
85 export 'src/metadata.dart'; 86 export 'src/metadata.dart';
86 export 'src/observable.dart' hide notifyPropertyChangeHelper, objectType; 87 export 'src/observable.dart' hide notifyPropertyChangeHelper, objectType;
87 export 'src/observable_box.dart'; 88 export 'src/observable_box.dart';
88 export 'src/observable_list.dart'; 89 export 'src/observable_list.dart';
89 export 'src/observable_map.dart'; 90 export 'src/observable_map.dart';
90 export 'src/path_observer.dart'; 91 export 'src/path_observer.dart';
91 export 'src/to_observable.dart'; 92 export 'src/to_observable.dart';
OLDNEW
« no previous file with comments | « no previous file | pkg/observe/lib/src/change_notifier.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698