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

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

Issue 22284003: pkg: analysis aided cleanup (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: nits Created 7 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 | Annotate | Revision Log
« no previous file with comments | « pkg/oauth2/test/handle_access_token_response_test.dart ('k') | pkg/observe/pubspec.yaml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 * *Warning*: this library is experimental, and APIs are subject to change. 6 * *Warning*: this library is experimental, and APIs are subject to change.
7 * 7 *
8 * This library is used to observe changes to [Observable] types. It also 8 * This library is used to observe changes to [Observable] types. It also
9 * has helpers to make implementing and using [Observable] objects easy. 9 * has helpers to make implementing and using [Observable] objects easy.
10 * 10 *
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 import 'dart:async'; 73 import 'dart:async';
74 import 'dart:collection'; 74 import 'dart:collection';
75 import 'dart:mirrors'; 75 import 'dart:mirrors';
76 76
77 // Note: this is an internal library so we can import it from tests. 77 // Note: this is an internal library so we can import it from tests.
78 // TODO(jmesserly): ideally we could import this with a prefix, but it caused 78 // TODO(jmesserly): ideally we could import this with a prefix, but it caused
79 // strange problems on the VM when I tested out the dirty-checking example 79 // strange problems on the VM when I tested out the dirty-checking example
80 // above. 80 // above.
81 import 'src/dirty_check.dart'; 81 import 'src/dirty_check.dart';
82 82
83 // TODO(jmesserly): should this be public? For now we're just using it inside
84 // Polymer.
85 import 'src/microtask.dart';
86
87 part 'src/change_notifier.dart'; 83 part 'src/change_notifier.dart';
88 part 'src/change_record.dart'; 84 part 'src/change_record.dart';
89 part 'src/compound_binding.dart'; 85 part 'src/compound_binding.dart';
90 part 'src/observable.dart'; 86 part 'src/observable.dart';
91 part 'src/observable_box.dart'; 87 part 'src/observable_box.dart';
92 part 'src/observable_list.dart'; 88 part 'src/observable_list.dart';
93 part 'src/observable_map.dart'; 89 part 'src/observable_map.dart';
94 part 'src/path_observer.dart'; 90 part 'src/path_observer.dart';
95 part 'src/to_observable.dart'; 91 part 'src/to_observable.dart';
OLDNEW
« no previous file with comments | « pkg/oauth2/test/handle_access_token_response_test.dart ('k') | pkg/observe/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698