OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012, 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 /** |
| 6 * A library for observing changes to observable Dart objects. |
| 7 * Similar in spirit to EcmaScript 6 |
| 8 * [Object.observe](http://wiki.ecmascript.org/doku.php?id=harmony:observe), but |
| 9 * able to observe expressions as well as objects, so long as the expressions |
| 10 * are computed from observable objects. |
| 11 * |
| 12 * See the [observable] annotation, [Observable] base class, and the [observe] |
| 13 * function. |
| 14 */ |
| 15 // TODO(jmesserly): this library is independent of web_ui, and can be factored |
| 16 // out into its own package. However, the compiler transform for @observable |
| 17 // requires web_ui compiler, until we get buildtool support for it. |
| 18 library web_ui.observe; |
| 19 |
| 20 export 'observe/expression.dart'; |
| 21 export 'observe/list.dart'; |
| 22 export 'observe/map.dart'; |
| 23 export 'observe/observable.dart'; |
| 24 export 'observe/reference.dart'; |
| 25 export 'observe/set.dart'; |
OLD | NEW |