OLD | NEW |
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 }; |
OLD | NEW |