Skip to content

Commit

Permalink
Get rid of all the library tags.
Browse files Browse the repository at this point in the history
R=rnystrom@google.com

Review URL: https://codereview.chromium.org//1580653005 .
  • Loading branch information
nex3 committed Jan 13, 2016
1 parent ad926d6 commit ee2c2aa
Show file tree
Hide file tree
Showing 12 changed files with 0 additions and 24 deletions.
2 changes: 0 additions & 2 deletions lib/src/eager_span_scanner.dart
Expand Up @@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library string_scanner.eager_span_scanner;

import 'package:charcode/ascii.dart';

import 'line_scanner.dart';
Expand Down
2 changes: 0 additions & 2 deletions lib/src/exception.dart
Expand Up @@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library string_scanner.exception;

import 'package:source_span/source_span.dart';

/// An exception thrown by a [StringScanner] that failed to parse a string.
Expand Down
2 changes: 0 additions & 2 deletions lib/src/line_scanner.dart
Expand Up @@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library string_scanner.line_scanner;

import 'package:charcode/ascii.dart';

import 'string_scanner.dart';
Expand Down
2 changes: 0 additions & 2 deletions lib/src/span_scanner.dart
Expand Up @@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library string_scanner.span_scanner;

import 'package:source_span/source_span.dart';

import 'eager_span_scanner.dart';
Expand Down
2 changes: 0 additions & 2 deletions lib/src/string_scanner.dart
Expand Up @@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library string_scanner.string_scanner;

import 'package:source_span/source_span.dart';

import 'exception.dart';
Expand Down
2 changes: 0 additions & 2 deletions lib/src/utils.dart
Expand Up @@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library string_scanner.utils;

/// Validates the arguments passed to [StringScanner.error].
void validateErrorArgs(String string, Match match, int position, int length) {
if (match != null && (position != null || length != null)) {
Expand Down
2 changes: 0 additions & 2 deletions lib/string_scanner.dart
Expand Up @@ -3,8 +3,6 @@
// BSD-style license that can be found in the LICENSE file.

/// A library for parsing strings using a sequence of patterns.
library string_scanner;

export 'src/exception.dart';
export 'src/line_scanner.dart';
export 'src/span_scanner.dart';
Expand Down
2 changes: 0 additions & 2 deletions test/error_test.dart
Expand Up @@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library string_scanner.error_test;

import 'package:string_scanner/string_scanner.dart';
import 'package:test/test.dart';

Expand Down
2 changes: 0 additions & 2 deletions test/line_scanner_test.dart
Expand Up @@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library string_scanner.line_scanner_test;

import 'package:string_scanner/string_scanner.dart';
import 'package:test/test.dart';

Expand Down
2 changes: 0 additions & 2 deletions test/span_scanner_test.dart
Expand Up @@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library string_scanner.span_scanner_test;

import 'package:string_scanner/string_scanner.dart';
import 'package:test/test.dart';

Expand Down
2 changes: 0 additions & 2 deletions test/string_scanner_test.dart
Expand Up @@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library string_scanner.string_scanner_test;

import 'package:string_scanner/string_scanner.dart';
import 'package:test/test.dart';

Expand Down
2 changes: 0 additions & 2 deletions test/utils.dart
Expand Up @@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library string_scanner.test.utils;

import 'package:string_scanner/string_scanner.dart';
import 'package:test/test.dart';

Expand Down

0 comments on commit ee2c2aa

Please sign in to comment.