OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 library docgen.generator; | 5 library docgen.generator; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 import 'dart:collection'; | 8 import 'dart:collection'; |
9 import 'dart:convert'; | 9 import 'dart:convert'; |
10 import 'dart:io'; | 10 import 'dart:io'; |
11 | 11 |
12 import 'package:markdown/markdown.dart' as markdown; | 12 import 'package:markdown/markdown.dart' as markdown; |
13 import 'package:path/path.dart' as path; | 13 import 'package:path/path.dart' as path; |
14 | 14 |
15 import 'package:compiler/compiler.dart' as api; | 15 import 'package:compiler/compiler.dart' as api; |
16 import 'package:compiler/implementation/filenames.dart'; | 16 import 'package:compiler/src/filenames.dart'; |
17 import 'package:compiler/implementation/mirrors/analyze.dart' | 17 import 'package:compiler/src/mirrors/analyze.dart' |
18 as dart2js; | 18 as dart2js; |
19 import 'package:compiler/implementation/source_file_provider.dart'; | 19 import 'package:compiler/src/source_file_provider.dart'; |
20 | 20 |
21 import 'exports/dart2js_mirrors.dart' as dart2js_mirrors; | 21 import 'exports/dart2js_mirrors.dart' as dart2js_mirrors; |
22 import 'exports/libraries.dart'; | 22 import 'exports/libraries.dart'; |
23 import 'exports/mirrors_util.dart' as dart2js_util; | 23 import 'exports/mirrors_util.dart' as dart2js_util; |
24 import 'exports/source_mirrors.dart'; | 24 import 'exports/source_mirrors.dart'; |
25 | 25 |
26 import 'io.dart'; | 26 import 'io.dart'; |
27 import 'library_helpers.dart'; | 27 import 'library_helpers.dart'; |
28 import 'models.dart'; | 28 import 'models.dart'; |
29 import 'package_helpers.dart'; | 29 import 'package_helpers.dart'; |
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
474 * [Samples](http://www.dartlang.org/samples/) | 474 * [Samples](http://www.dartlang.org/samples/) |
475 * [A Tour of the Dart Libraries](http://www.dartlang.org/docs/dart-up-and-runn
ing/contents/ch03.html) | 475 * [A Tour of the Dart Libraries](http://www.dartlang.org/docs/dart-up-and-runn
ing/contents/ch03.html) |
476 | 476 |
477 This API reference is automatically generated from the source code in the | 477 This API reference is automatically generated from the source code in the |
478 [Dart project](https://code.google.com/p/dart/). | 478 [Dart project](https://code.google.com/p/dart/). |
479 If you'd like to contribute to this documentation, see | 479 If you'd like to contribute to this documentation, see |
480 [Contributing](https://code.google.com/p/dart/wiki/Contributing) | 480 [Contributing](https://code.google.com/p/dart/wiki/Contributing) |
481 and | 481 and |
482 [Writing API Documentation](https://code.google.com/p/dart/wiki/WritingApiDocume
ntation). | 482 [Writing API Documentation](https://code.google.com/p/dart/wiki/WritingApiDocume
ntation). |
483 """; | 483 """; |
OLD | NEW |