| OLD | NEW |
| 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 /** | 5 /** |
| 6 * A library for extracting the documentation from the various HTML libraries | 6 * A library for extracting the documentation from the various HTML libraries |
| 7 * ([dart:html], [dart:svg], [dart:web_audio], [dart:indexed_db]) and saving | 7 * ([dart:html], [dart:svg], [dart:web_audio], [dart:indexed_db]) and saving |
| 8 * those documentation comments to a JSON file. | 8 * those documentation comments to a JSON file. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 * ... | 44 * ... |
| 45 * } | 45 * } |
| 46 * }, | 46 * }, |
| 47 * ... | 47 * ... |
| 48 * }, | 48 * }, |
| 49 * ... | 49 * ... |
| 50 * } | 50 * } |
| 51 * | 51 * |
| 52 * Completes to `true` if any errors were encountered, `false` otherwise. | 52 * Completes to `true` if any errors were encountered, `false` otherwise. |
| 53 */ | 53 */ |
| 54 Future<bool> convert(Path libPath, Path jsonPath) { | 54 Future<bool> convert(String libPath, String jsonPath) { |
| 55 var paths = <Path>[]; | 55 var paths = <String>[]; |
| 56 for (var libraryName in HTML_LIBRARY_NAMES) { | 56 for (var libraryName in HTML_LIBRARY_NAMES) { |
| 57 paths.add(new Path(libraryName)); | 57 paths.add(libraryName); |
| 58 } | 58 } |
| 59 | 59 |
| 60 return analyze(paths, libPath, options: ['--preserve-comments']) | 60 return analyze(paths, libPath, options: ['--preserve-comments']) |
| 61 .then((MirrorSystem mirrors) { | 61 .then((MirrorSystem mirrors) { |
| 62 var convertedJson = _generateJsonFromLibraries(mirrors); | 62 var convertedJson = _generateJsonFromLibraries(mirrors); |
| 63 return _exportJsonToFile(convertedJson, jsonPath); | 63 return _exportJsonToFile(convertedJson, jsonPath); |
| 64 }); | 64 }); |
| 65 } | 65 } |
| 66 | 66 |
| 67 Future<bool> _exportJsonToFile(Map convertedJson, Path jsonPath) { | 67 Future<bool> _exportJsonToFile(Map convertedJson, String jsonPath) { |
| 68 return new Future.sync(() { | 68 return new Future.sync(() { |
| 69 final jsonFile = new File.fromPath(jsonPath); | 69 final jsonFile = new File(jsonPath); |
| 70 var writeJson = prettySerialize(convertedJson); | 70 var writeJson = prettySerialize(convertedJson); |
| 71 | 71 |
| 72 var outputStream = jsonFile.openWrite(); | 72 var outputStream = jsonFile.openWrite(); |
| 73 outputStream.writeln(writeJson); | 73 outputStream.writeln(writeJson); |
| 74 outputStream.close(); | 74 outputStream.close(); |
| 75 return outputStream.done.then((_) => false); | 75 return outputStream.done.then((_) => false); |
| 76 }); | 76 }); |
| 77 } | 77 } |
| 78 | 78 |
| 79 Map _generateJsonFromLibraries(MirrorSystem mirrors) { | 79 Map _generateJsonFromLibraries(MirrorSystem mirrors) { |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 for (var s in tags.reflectee.split(',')) { | 185 for (var s in tags.reflectee.split(',')) { |
| 186 domNames.add(s.trim()); | 186 domNames.add(s.trim()); |
| 187 } | 187 } |
| 188 | 188 |
| 189 if (domNames.length == 1 && domNames[0] == 'none') return <String>[]; | 189 if (domNames.length == 1 && domNames[0] == 'none') return <String>[]; |
| 190 return domNames; | 190 return domNames; |
| 191 } else { | 191 } else { |
| 192 return <String>[]; | 192 return <String>[]; |
| 193 } | 193 } |
| 194 } | 194 } |
| OLD | NEW |