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

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

Issue 50203004: port TemplateBinding to ed3266266e751b5ab1f75f8e0509d0d5f0ef35d8 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
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 /** 5 /**
6 * Support for observing changes in model-view architectures. 6 * Support for observing changes in model-view architectures.
7 * 7 *
8 * **Warning:** This library is experimental, and APIs are subject to change. 8 * **Warning:** This library is experimental, and APIs are subject to change.
9 * 9 *
10 * This library is used to observe changes to [Observable] types. It also 10 * This library is used to observe changes to [Observable] types. It also
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 92
93 // Note: this is an internal library so we can import it from tests. 93 // Note: this is an internal library so we can import it from tests.
94 // TODO(jmesserly): ideally we could import this with a prefix, but it caused 94 // TODO(jmesserly): ideally we could import this with a prefix, but it caused
95 // strange problems on the VM when I tested out the dirty-checking example 95 // strange problems on the VM when I tested out the dirty-checking example
96 // above. 96 // above.
97 import 'src/dirty_check.dart'; 97 import 'src/dirty_check.dart';
98 98
99 part 'src/bind_property.dart'; 99 part 'src/bind_property.dart';
100 part 'src/change_notifier.dart'; 100 part 'src/change_notifier.dart';
101 part 'src/change_record.dart'; 101 part 'src/change_record.dart';
102 part 'src/compound_binding.dart'; 102 part 'src/compound_path_observer.dart';
103 part 'src/list_path_observer.dart'; 103 part 'src/list_path_observer.dart';
104 part 'src/metadata.dart'; 104 part 'src/metadata.dart';
105 part 'src/observable.dart'; 105 part 'src/observable.dart';
106 part 'src/observable_box.dart'; 106 part 'src/observable_box.dart';
107 part 'src/observable_list.dart'; 107 part 'src/observable_list.dart';
108 part 'src/observable_map.dart'; 108 part 'src/observable_map.dart';
109 part 'src/path_observer.dart'; 109 part 'src/path_observer.dart';
110 part 'src/to_observable.dart'; 110 part 'src/to_observable.dart';
OLDNEW
« no previous file with comments | « no previous file | pkg/observe/lib/src/change_record.dart » ('j') | pkg/observe/lib/src/compound_path_observer.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698