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

Side by Side Diff: lib/src/hydrolysis/index.js

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates Created 5 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
« no previous file with comments | « lib/src/hydrolysis/API.md ('k') | lib/src/iron-a11y-announcer/iron-a11y-announcer.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /** 1 /**
2 * @license 2 * @license
3 * Copyright (c) 2015 The Polymer Project Authors. All rights reserved. 3 * Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
4 * This code may only be used under the BSD style license found at http://polyme r.github.io/LICENSE.txt 4 * This code may only be used under the BSD style license found at http://polyme r.github.io/LICENSE.txt
5 * The complete set of authors may be found at http://polymer.github.io/AUTHORS. txt 5 * The complete set of authors may be found at http://polymer.github.io/AUTHORS. txt
6 * The complete set of contributors may be found at http://polymer.github.io/CON TRIBUTORS.txt 6 * The complete set of contributors may be found at http://polymer.github.io/CON TRIBUTORS.txt
7 * Code distributed by Google as part of the polymer project is also 7 * Code distributed by Google as part of the polymer project is also
8 * subject to an additional IP rights grant found at http://polymer.github.io/PA TENTS.txt 8 * subject to an additional IP rights grant found at http://polymer.github.io/PA TENTS.txt
9 */ 9 */
10 /*jslint node: true */ 10 /*jslint node: true */
11 'use strict'; 11 'use strict';
12 12
13 /** 13 /**
14 * Static analysis for Polymer. 14 * Static analysis for Polymer.
15 * @namespace hydrolysis 15 * @namespace hydrolysis
16 */ 16 */
17 module.exports = { 17 module.exports = {
18 Analyzer: require('./lib/analyzer'), 18 Analyzer: require('./lib/analyzer'),
19 docs: require('./lib/ast-utils/docs'), 19 docs: require('./lib/ast-utils/docs'),
20 FSResolver: require('./lib/loader/fs-resolver'), 20 FSResolver: require('./lib/loader/fs-resolver'),
21 jsdoc: require('./lib/ast-utils/jsdoc'), 21 jsdoc: require('./lib/ast-utils/jsdoc'),
22 Loader: require('./lib/loader/file-loader'), 22 Loader: require('./lib/loader/file-loader'),
23 NoopResolver: require('./lib/loader/noop-resolver'), 23 NoopResolver: require('./lib/loader/noop-resolver'),
24 XHRResolver: require('./lib/loader/xhr-resolver'), 24 RedirectResolver: require('./lib/loader/redirect-resolver'),
25 _jsParse: require('./lib/ast-utils/js-parse'), 25 XHRResolver: require('./lib/loader/xhr-resolver'),
26 _importParse: require('./lib/ast-utils/import-parse'), 26 _jsParse: require('./lib/ast-utils/js-parse'),
27 _importParse: require('./lib/ast-utils/import-parse'),
27 }; 28 };
OLDNEW
« no previous file with comments | « lib/src/hydrolysis/API.md ('k') | lib/src/iron-a11y-announcer/iron-a11y-announcer.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698