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

Unified Diff: pkg/polymer_expressions/example/example.dart

Issue 22950008: move fancy_syntax into Dart SVN (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/polymer_expressions/README.md ('k') | pkg/polymer_expressions/example/example.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/polymer_expressions/example/example.dart
diff --git a/pkg/polymer_expressions/example/example.dart b/pkg/polymer_expressions/example/example.dart
new file mode 100644
index 0000000000000000000000000000000000000000..f3ad658a1408247444ae30acbd646e0fd1c22dce
--- /dev/null
+++ b/pkg/polymer_expressions/example/example.dart
@@ -0,0 +1,26 @@
+// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+import 'dart:html';
+
+import 'package:polymer_expressions/polymer_expressions.dart';
+import 'package:mdv/mdv.dart' as mdv;
+
+import 'person.dart';
+
+main() {
+ mdv.initialize();
+ var john = new Person('John', 'Messerly', ['A', 'B', 'C']);
+ var justin = new Person('Justin', 'Fagnani', ['D', 'E', 'F']);
+ var globals = {
+ 'uppercase': (String v) => v.toUpperCase(),
+ 'people': [john, justin],
+ };
+
+ query('#test')
+ ..bindingDelegate = new PolymerExpressions(globals: globals)
+ ..model = john;
+
+ query('#test2').model = john;
+}
« no previous file with comments | « pkg/polymer_expressions/README.md ('k') | pkg/polymer_expressions/example/example.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698