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

Side by Side Diff: lib/observe.dart

Issue 12096106: work in progress: observable implementation using detailed change records (Closed) Base URL: https://github.com/dart-lang/web-ui.git@master
Patch Set: Created 7 years, 10 months 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
« no previous file with comments | « example/todomvc/model.dart ('k') | lib/observe/expression.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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';
OLDNEW
« no previous file with comments | « example/todomvc/model.dart ('k') | lib/observe/expression.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698