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

Unified Diff: lib/web_ui.dart

Issue 12225039: Support for observable models, fixes #259 (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/watcher.dart ('k') | pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/web_ui.dart
diff --git a/lib/web_ui.dart b/lib/web_ui.dart
index 3303d95d89097dbc55a85dc93658799008f9c4cf..d287c1365eb386efa0f57981f0cdf56ba38dcc52 100644
--- a/lib/web_ui.dart
+++ b/lib/web_ui.dart
@@ -3,15 +3,17 @@
// BSD-style license that can be found in the LICENSE file.
/**
- * This library exposes the types in [watcher], [safe_html], [templating] and
- * the [WebComponent] base class. See this article for more information about
- * this library: <http://www.dartlang.org/articles/dart-web-components/>.
+ * This library exposes the types in [observe], [safe_html], [templating],
+ * [watcher] and the [WebComponent] base class. See this article for more
+ * information about this library:
+ * <http://www.dartlang.org/articles/dart-web-components/>.
*/
library web_ui;
-export 'watcher.dart';
+export 'observe.dart';
export 'safe_html.dart';
export 'templating.dart';
+export 'watcher.dart';
import 'dart:async';
import 'dart:html';
@@ -19,9 +21,10 @@ import 'dart:html';
import 'package:meta/meta.dart';
// Imported for the doc comment
-import 'watcher.dart' as watcher;
+import 'observe.dart' as observe;
import 'safe_html.dart' as safe_html;
import 'templating.dart' as templating;
+import 'watcher.dart' as watcher;
/**
* The base class for all Dart web components. In addition to the [Element]
« no previous file with comments | « lib/watcher.dart ('k') | pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698