| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 library observe; | |
| 6 | |
| 7 // This library contains code ported from observe-js: | |
| 8 // https://github.com/Polymer/observe-js/blob/0152d542350239563d0f2cad39d22d3254
bd6c2a/src/observe.js | |
| 9 // We port what is needed for data bindings. Most of the functionality is | |
| 10 // ported, except where differences are needed for Dart's Observable type. | |
| 11 | |
| 12 export 'src/bindable.dart'; | |
| 13 export 'src/bind_property.dart'; | |
| 14 export 'src/change_notifier.dart'; | |
| 15 export 'src/change_record.dart'; | |
| 16 export 'src/list_path_observer.dart'; | |
| 17 export 'src/list_diff.dart' show ListChangeRecord; | |
| 18 export 'src/metadata.dart'; | |
| 19 export 'src/observable.dart' hide notifyPropertyChangeHelper; | |
| 20 export 'src/observable_box.dart'; | |
| 21 export 'src/observable_list.dart'; | |
| 22 export 'src/observable_map.dart'; | |
| 23 export 'src/observer_transform.dart'; | |
| 24 export 'src/path_observer.dart' hide getSegmentsOfPropertyPathForTesting; | |
| 25 export 'src/to_observable.dart'; | |
| OLD | NEW |