Skip to content

Commit

Permalink
fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo committed Nov 26, 2024
1 parent b7a5901 commit dc77ec2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pkgs/matcher/lib/mirror_matchers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// BSD-style license that can be found in the LICENSE file.

@Deprecated('Check properties on known types')
library mirror_matchers;
library;

/// The mirror matchers library provides some additional matchers that
/// make use of `dart:mirrors`.
Expand Down
4 changes: 2 additions & 2 deletions pkgs/matcher/lib/src/type_matcher.dart
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ class TypeMatcher<T> extends Matcher {
final _dart2DynamicArgs = RegExp('<dynamic(, dynamic)*>');

/// With this expression `{}.runtimeType.toString`,
/// Dart 1: "<Instance of Map>
/// Dart 2: "<Instance of Map<dynamic, dynamic>>"
/// Dart 1: "`<Instance of Map>`"
/// Dart 2: "`<Instance of Map<dynamic, dynamic>>`"
///
/// This functions returns the Dart 1 output, when Dart 2 runtime semantics
/// are enabled.
Expand Down
2 changes: 1 addition & 1 deletion pkgs/test/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ environment:
sdk: ^3.5.0

dependencies:
async: ^2.5.0
analyzer: '>=6.0.0 <8.0.0'
async: ^2.5.0
boolean_selector: ^2.1.0
collection: ^1.15.0
coverage: ^1.0.1
Expand Down

0 comments on commit dc77ec2

Please sign in to comment.