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

Side by Side Diff: tools/dom/docs/lib/docs.dart

Issue 68513006: o/~ Y muchos maaaaaaas... o/~ (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « tools/dom/docs/docs.json ('k') | tools/dom/src/CssClassSet.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 /** 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 * ... 43 * ...
44 * ], 44 * ],
45 * ... 45 * ...
46 * } 46 * }
47 * }, 47 * },
48 * ... 48 * ...
49 * }, 49 * },
50 * ... 50 * ...
51 * } 51 * }
52 * 52 *
53 * Completes to `true` if any errors were encountered, `false` otherwise. 53 * Completes to true if any errors were encountered, false otherwise.
54 */ 54 */
55 Future<bool> convert(String libUri, String jsonPath) { 55 Future<bool> convert(String libUri, String jsonPath) {
56 var paths = <String>[]; 56 var paths = <String>[];
57 for (var libraryName in HTML_LIBRARY_NAMES) { 57 for (var libraryName in HTML_LIBRARY_NAMES) {
58 paths.add(libraryName); 58 paths.add(libraryName);
59 } 59 }
60 60
61 return analyze(paths, libUri, options: ['--preserve-comments']) 61 return analyze(paths, libUri, options: ['--preserve-comments'])
62 .then((MirrorSystem mirrors) { 62 .then((MirrorSystem mirrors) {
63 var convertedJson = _generateJsonFromLibraries(mirrors); 63 var convertedJson = _generateJsonFromLibraries(mirrors);
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 for (var s in tags.reflectee.split(',')) { 186 for (var s in tags.reflectee.split(',')) {
187 domNames.add(s.trim()); 187 domNames.add(s.trim());
188 } 188 }
189 189
190 if (domNames.length == 1 && domNames[0] == 'none') return <String>[]; 190 if (domNames.length == 1 && domNames[0] == 'none') return <String>[];
191 return domNames; 191 return domNames;
192 } else { 192 } else {
193 return <String>[]; 193 return <String>[];
194 } 194 }
195 } 195 }
OLDNEW
« no previous file with comments | « tools/dom/docs/docs.json ('k') | tools/dom/src/CssClassSet.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698