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

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

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 4 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 | « packages/observe/lib/mirrors_used.dart ('k') | packages/observe/lib/src/bind_property.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) 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';
OLDNEW
« no previous file with comments | « packages/observe/lib/mirrors_used.dart ('k') | packages/observe/lib/src/bind_property.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698