| 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 '../../../../sdk/lib/_internal/compiler/compiler.dart' as api; | 15 import 'package:compiler/compiler.dart' as api; |
| 16 import '../../../../sdk/lib/_internal/compiler/implementation/filenames.dart'; | 16 import 'package:compiler/implementation/filenames.dart'; |
| 17 import '../../../../sdk/lib/_internal/compiler/implementation/mirrors/analyze.da
rt' | 17 import 'package:compiler/implementation/mirrors/analyze.dart' |
| 18 as dart2js; | 18 as dart2js; |
| 19 import '../../../../sdk/lib/_internal/compiler/implementation/source_file_provid
er.dart'; | 19 import 'package:compiler/implementation/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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 * [Samples](http://www.dartlang.org/samples/) | 463 * [Samples](http://www.dartlang.org/samples/) |
| 464 * [A Tour of the Dart Libraries](http://www.dartlang.org/docs/dart-up-and-runn
ing/contents/ch03.html) | 464 * [A Tour of the Dart Libraries](http://www.dartlang.org/docs/dart-up-and-runn
ing/contents/ch03.html) |
| 465 | 465 |
| 466 This API reference is automatically generated from the source code in the | 466 This API reference is automatically generated from the source code in the |
| 467 [Dart project](https://code.google.com/p/dart/). | 467 [Dart project](https://code.google.com/p/dart/). |
| 468 If you'd like to contribute to this documentation, see | 468 If you'd like to contribute to this documentation, see |
| 469 [Contributing](https://code.google.com/p/dart/wiki/Contributing) | 469 [Contributing](https://code.google.com/p/dart/wiki/Contributing) |
| 470 and | 470 and |
| 471 [Writing API Documentation](https://code.google.com/p/dart/wiki/WritingApiDocume
ntation). | 471 [Writing API Documentation](https://code.google.com/p/dart/wiki/WritingApiDocume
ntation). |
| 472 """; | 472 """; |
| OLD | NEW |