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

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

Issue 156903004: Remove more tests which depend on dartdoc, which has been deleted. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 10 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
« no previous file with comments | « no previous file | tools/dom/docs/docs.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
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.
4
5 /**
6 * This program reads the HTML libraries from [LIB_PATH] and outputs their
7 * documentation to [JSON_PATH].
8 */
9
10 import 'dart:io';
11 import 'dart:async';
12
13 import 'package:path/path.dart' as path;
14
15 import '../lib/docs.dart';
16
17 final String json_path = Platform.script.resolve('../docs.json').toFilePath();
18 final String lib_uri = Platform.script.resolve('../../../../sdk').toString();
19
20 main() {
21 print('Converting HTML docs from $lib_uri to $json_path.');
22
23 convert(lib_uri, json_path)
24 .then((bool anyErrors) {
25 print('Converted HTML docs ${anyErrors ? "with": "without"}'
26 ' errors.');
27 });
28 }
OLDNEW
« no previous file with comments | « no previous file | tools/dom/docs/docs.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698