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

Side by Side Diff: utils/apidoc/apidoc.dart

Issue 9555013: Get dartdoc in the SDK and working correctly. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update copyright date. Created 8 years, 9 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
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 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 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 * Generates the complete set of corelib reference documentation. 6 * Generates the complete set of corelib reference documentation.
7 */ 7 */
8 #library('apidoc'); 8 #library('apidoc');
9 9
10 #import('dart:json'); 10 #import('dart:json');
11 #import('html_diff.dart'); 11 #import('html_diff.dart');
12 #import('../../frog/lang.dart'); 12 #import('../../frog/lang.dart');
13 #import('../../frog/file_system_vm.dart'); 13 #import('../../frog/file_system_vm.dart');
14 #import('../../frog/file_system.dart'); 14 #import('../../frog/file_system.dart');
15 #import('../dartdoc/dartdoc.dart', prefix: 'doc'); 15 #import('../../lib/dartdoc/dartdoc.dart', prefix: 'doc');
16 16
17 HtmlDiff _diff; 17 HtmlDiff _diff;
18 18
19 final GET_PREFIX = 'get:'; 19 final GET_PREFIX = 'get:';
20 20
21 void main() { 21 void main() {
22 var files = new VMFileSystem(); 22 var files = new VMFileSystem();
23 parseOptions('../../frog', ['', '', '--libdir=../../frog/lib'], files); 23 parseOptions('../../frog', ['', '', '--libdir=../../frog/lib'], files);
24 initializeWorld(files); 24 initializeWorld(files);
25 25
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 return 383 return
384 ''' 384 '''
385 <p class="correspond">This corresponds to $domTypesText in the 385 <p class="correspond">This corresponds to $domTypesText in the
386 ${a("dom.html", "dart:dom")} library.</p> 386 ${a("dom.html", "dart:dom")} library.</p>
387 '''; 387 ''';
388 } 388 }
389 389
390 return ''; 390 return '';
391 } 391 }
392 } 392 }
OLDNEW
« frog/presubmit.py ('K') | « utils/apidoc/apidoc ('k') | utils/apidoc/html_diff.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698