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

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

Issue 23453034: Added library-level comments for polymer and polymer_expressions (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: incorporated feedback + editing READMEs and changed homepage in pubspec.yaml Created 7 years, 3 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
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 /**
6 * A syntax used with polymer elements that
7 * allows for complex binding expressions, including
8 * property access, function invocation,
9 * list/map indexing, and two-way filtering.
10 *
11 * When you install polymer.dart,
12 * polymer_expressions is automatically installed as well.
13 *
14 * Polymer expressions are part of the Polymer.dart project.
15 * Refer to the
16 * [Polymer.dart](http://www.dartlang.org/polymer-dart/)
17 * home page for example code, project status, and
18 * information about how to get started using Polymer.dart in your apps.
19 *
20 * ## Other resources
21 *
22 * Learn more about the polymer_expressions package
23 * at the pub repository:
24 * [polymer_expressions](http://pub.dartlang.org/packages/polymer_expressions).
25 *
26 */
27
5 library polymer_expressions; 28 library polymer_expressions;
6 29
7 import 'dart:async'; 30 import 'dart:async';
8 import 'dart:html'; 31 import 'dart:html';
9 32
10 import 'package:observe/observe.dart'; 33 import 'package:observe/observe.dart';
11 34
12 import 'eval.dart'; 35 import 'eval.dart';
13 import 'expression.dart'; 36 import 'expression.dart';
14 import 'parser.dart'; 37 import 'parser.dart';
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 123
101 getValueWorkaround(key) { 124 getValueWorkaround(key) {
102 if (key == _VALUE) return value; 125 if (key == _VALUE) return value;
103 } 126 }
104 127
105 setValueWorkaround(key, v) { 128 setValueWorkaround(key, v) {
106 if (key == _VALUE) value = v; 129 if (key == _VALUE) value = v;
107 } 130 }
108 131
109 } 132 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698