Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit 53daab4

Browse files
authored
Remove library declarations (#208)
These don't add any value.
1 parent 6b8796d commit 53daab4

13 files changed

+0
-26
lines changed

lib/coverage.dart

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
library coverage;
6-
75
export 'src/collect.dart';
86
export 'src/formatter.dart';
97
export 'src/hitmap.dart';

lib/src/collect.dart

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
library coverage.collect;
6-
75
import 'dart:async';
86

97
import 'package:vm_service_client/vm_service_client.dart';

lib/src/formatter.dart

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
library coverage.formatter;
6-
75
import 'dart:async';
86

97
import 'package:path/path.dart' as p;

lib/src/hitmap.dart

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
library coverage.hitmap;
6-
75
import 'dart:async';
86
import 'dart:convert';
97
import 'dart:io';

lib/src/resolver.dart

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
library coverage.resolver;
6-
75
import 'dart:async';
86
import 'dart:io';
97

lib/src/run_and_collect.dart

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
library coverage.run_and_collect;
6-
75
import 'dart:async';
86
import 'dart:convert' show UTF8, LineSplitter;
97
import 'dart:io';

lib/src/util.dart

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
library coverage.src.util;
6-
75
import 'dart:async';
86
import 'dart:io';
97

test/collect_coverage_api_test.dart

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
library coverage.test.collect_coverage_api_test;
6-
75
import 'dart:async';
86
import 'dart:convert';
97

test/collect_coverage_test.dart

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
library coverage.test.collect_coverage_test;
6-
75
import 'dart:async';
86
import 'dart:convert';
97
import 'dart:io';

test/lcov_test.dart

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
library coverage.test.lcov_test;
6-
75
import 'dart:async';
86
import 'dart:convert';
97
import 'dart:io';

test/run_and_collect_test.dart

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
library coverage.test.run_and_collect_test;
6-
75
import 'dart:io';
86

97
import 'package:coverage/coverage.dart';

test/test_util.dart

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
library coverage.test.util;
6-
75
import 'dart:async';
86
import 'dart:io';
97

test/util_test.dart

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
library coverage.test.util_test;
6-
75
import 'dart:async';
86

97
import 'package:coverage/src/util.dart';

0 commit comments

Comments
 (0)