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

Commit 809bcce

Browse files
committed
fixed import
1 parent 07426a4 commit 809bcce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/src/utils.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
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+
import 'ast.dart';
6+
57
// An identifier here is defined as:
68
// * A sequence of `_`, `$`, letters or digits,
79
// * where no `$` comes after a digit.
8-
import 'package:linter/src/ast.dart';
9-
1010
final _identifier = RegExp(r'^[_$a-z]+(\d[_a-z\d]*)?$', caseSensitive: false);
1111

1212
// A lower camel-case here is defined as:

0 commit comments

Comments
 (0)