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

linter 1.31.0 cherry-pick release (update) #3870

Merged
merged 2 commits into from
Dec 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

- updated `prefer_equal_for_default_values` to not report for SDKs `>=2.19`,
where this lint is now an analyzer diagnostic.
- updated `unrelated_type_equality_checks` to support updated `package:fixnum`
structure.

# 1.30.0

Expand Down
15 changes: 9 additions & 6 deletions lib/src/rules/unrelated_type_equality_checks.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import 'package:analyzer/dart/ast/token.dart';
import 'package:analyzer/dart/ast/visitor.dart';
import 'package:analyzer/dart/element/element.dart';
import 'package:analyzer/dart/element/type.dart';
import 'package:collection/collection.dart';

import '../analyzer.dart';
import '../extensions.dart';
Expand Down Expand Up @@ -148,12 +149,14 @@ bool _hasNonComparableOperands(TypeSystem typeSystem, BinaryExpression node) {
bool _isCoreInt(DartType type) => type.isDartCoreInt;

bool _isFixNumIntX(DartType type) {
if (type is! InterfaceType) {
return false;
}
Element element = type.element;
return (element.name == 'Int32' || element.name == 'Int64') &&
element.library?.name == 'fixnum';
// todo(pq): add tests that ensure this predicate works with fixnum >= 1.1.0-dev
// See: https://github.com/dart-lang/linter/issues/3868
if (type is! InterfaceType) return false;
InterfaceElement element = type.element;
if (element.name != 'Int32' && element.name != 'Int64') return false;
var uri = element.library.source.uri;
if (!uri.isScheme('package')) return false;
return uri.pathSegments.firstOrNull == 'fixnum';
}

class UnrelatedTypeEqualityChecks extends LintRule {
Expand Down