| OLD | NEW |
| 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 /// Support for observing changes in model-view architectures. | 5 /// Support for observing changes in model-view architectures. |
| 6 /// | 6 /// |
| 7 /// **Warning:** This library is experimental, and APIs are subject to change. | 7 /// **Warning:** This library is experimental, and APIs are subject to change. |
| 8 /// | 8 /// |
| 9 /// This library is used to observe changes to [Observable] types. It also | 9 /// This library is used to observe changes to [Observable] types. It also |
| 10 /// has helpers to make implementing and using [Observable] objects easy. | 10 /// has helpers to make implementing and using [Observable] objects easy. |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 export 'src/change_notifier.dart'; | 106 export 'src/change_notifier.dart'; |
| 107 export 'src/change_record.dart'; | 107 export 'src/change_record.dart'; |
| 108 export 'src/list_path_observer.dart'; | 108 export 'src/list_path_observer.dart'; |
| 109 export 'src/list_diff.dart' show ListChangeRecord; | 109 export 'src/list_diff.dart' show ListChangeRecord; |
| 110 export 'src/metadata.dart'; | 110 export 'src/metadata.dart'; |
| 111 export 'src/observable.dart' hide notifyPropertyChangeHelper; | 111 export 'src/observable.dart' hide notifyPropertyChangeHelper; |
| 112 export 'src/observable_box.dart'; | 112 export 'src/observable_box.dart'; |
| 113 export 'src/observable_list.dart'; | 113 export 'src/observable_list.dart'; |
| 114 export 'src/observable_map.dart'; | 114 export 'src/observable_map.dart'; |
| 115 export 'src/observer_transform.dart'; | 115 export 'src/observer_transform.dart'; |
| 116 export 'src/path_observer.dart'; | 116 export 'src/path_observer.dart' hide getSegmentsOfPropertyPathForTesting; |
| 117 export 'src/to_observable.dart'; | 117 export 'src/to_observable.dart'; |
| OLD | NEW |