File tree Expand file tree Collapse file tree 10 files changed +28
-13
lines changed Expand file tree Collapse file tree 10 files changed +28
-13
lines changed Original file line number Diff line number Diff line change @@ -6,14 +6,14 @@ library dartdoc.bin;
66
77import 'dart:io' ;
88
9+ import 'package:analyzer/src/generated/java_io.dart' ;
10+ import 'package:analyzer/src/generated/sdk.dart' ;
11+ import 'package:analyzer/src/generated/sdk_io.dart' ;
912import 'package:args/args.dart' ;
1013import 'package:cli_util/cli_util.dart' as cli_util;
1114import 'package:dartdoc/dartdoc.dart' ;
1215import 'package:path/path.dart' as path;
1316import 'package:stack_trace/stack_trace.dart' ;
14- import 'package:analyzer/src/generated/sdk.dart' ;
15- import 'package:analyzer/src/generated/sdk_io.dart' ;
16- import 'package:analyzer/src/generated/java_io.dart' ;
1717
1818/// Analyzes Dart files and generates a representation of included libraries,
1919/// classes, and members. Uses the current directory to look for libraries.
Original file line number Diff line number Diff line change @@ -25,14 +25,14 @@ import 'package:analyzer/src/generated/source.dart';
2525import 'package:analyzer/src/generated/source_io.dart' ;
2626import 'package:path/path.dart' as p;
2727
28+ import 'src/config.dart' ;
2829import 'src/generator.dart' ;
2930import 'src/html/html_generator.dart' ;
3031import 'src/io_utils.dart' ;
3132import 'src/model.dart' ;
3233import 'src/model_utils.dart' ;
3334import 'src/package_meta.dart' ;
3435
35- import 'src/config.dart' ;
3636export 'src/element_type.dart' ;
3737export 'src/generator.dart' ;
3838export 'src/model.dart' ;
Original file line number Diff line number Diff line change 1+ // Copyright (c) 2015, 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+
15library dartdoc.config;
26
37import 'dart:io' ;
Original file line number Diff line number Diff line change 1+ // Copyright (c) 2015, 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+
15library debugger_helper;
26
37import "dart:developer" as dev;
Original file line number Diff line number Diff line change 1+ // Copyright (c) 2015, 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+
15library dartdoc.templates;
26
37import 'dart:async' show Future;
Original file line number Diff line number Diff line change 1+ // Copyright (c) 2015, 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+
15library dartdoc.cache;
26
37import 'dart:collection' ;
Original file line number Diff line number Diff line change 11// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2-
32// for details. All rights reserved. Use of this source code is governed by a
43// BSD-style license that can be found in the LICENSE file.
54
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ import 'package:dartdoc/dartdoc.dart';
1111import 'package:dartdoc/src/model.dart' ;
1212import 'package:dartdoc/src/model_utils.dart' ;
1313import 'package:dartdoc/src/package_meta.dart' ;
14- import 'package:test/test.dart' ;
1514import 'package:path/path.dart' as p;
15+ import 'package:test/test.dart' ;
1616
1717import 'src/utils.dart' as utils;
1818
Original file line number Diff line number Diff line change 1- // Copyright (c) 2015, Google Inc. Please see the AUTHORS file for details.
2- // All rights reserved. Use of this source code is governed by a BSD-style
3- // license that can be found in the LICENSE file.
1+ // Copyright (c) 2015, 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.
44
55import 'dart:async' show Future;
66import 'dart:io' hide ProcessException;
Original file line number Diff line number Diff line change 11#! /bin/bash
22
3- # Copyright (c) 2014, Google Inc. Please see the AUTHORS file for details.
4- # All rights reserved. Use of this source code is governed by a BSD-style
5- # license that can be found in the LICENSE file.
3+ # Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
4+ # for details. All rights reserved. Use of this source code is governed by a
5+ # BSD-style license that can be found in the LICENSE file.
66
77# Fast fail the script on failures.
88set -e
@@ -16,7 +16,7 @@ export PATH="$PATH":"~/.pub-cache/bin"
1616
1717if [ " $GEN_SDK_DOCS " = " true" ]
1818then
19- # Build the SDK docs
19+ # Build the SDK docs
2020 # silence stdout but echo stderr
2121 echo " "
2222 echo " Building and validating SDK docs..."
You can’t perform that action at this time.
0 commit comments