blob: 84962e8a04c9ec5553d344d2680f98087b79c2a3 [file] [log] [blame]
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
// 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.
import 'package:analyzer/dart/ast/ast.dart'
show
AstNode,
ParenthesizedExpression,
PrefixExpression,
PrefixedIdentifier,
PropertyAccess,
SimpleIdentifier;
import 'package:analyzer/dart/ast/token.dart';
import 'package:analyzer/dart/ast/visitor.dart';
import '../analyzer.dart';
import '../ast.dart';
const _desc = r'Use `isNotEmpty` for Iterables and Maps.';
const _details = r'''
**PREFER** `x.isNotEmpty` to `!x.isEmpty` for `Iterable` and `Map` instances.
When testing whether an iterable or map is empty, prefer `isNotEmpty` over
`!isEmpty` to improve code readability.
**GOOD:**
```dart
if (todo.isNotEmpty) {
sendResults(request, todo.isEmpty);
}
```
**BAD:**
```dart
if (!sources.isEmpty) {
process(sources);
}
```
''';
class PreferIsNotEmpty extends LintRule implements NodeLintRule {
PreferIsNotEmpty()
: super(
name: 'prefer_is_not_empty',
description: _desc,
details: _details,
group: Group.style);
@override
void registerNodeProcessors(
NodeLintRegistry registry, LinterContext context) {
var visitor = _Visitor(this);
registry.addSimpleIdentifier(this, visitor);
}
}
class _Visitor extends SimpleAstVisitor<void> {
final LintRule rule;
_Visitor(this.rule);
@override
void visitSimpleIdentifier(SimpleIdentifier node) {
late AstNode isEmptyAccess;
SimpleIdentifier? isEmptyIdentifier;
var parent = node.parent;
if (parent is PropertyAccess) {
isEmptyIdentifier = parent.propertyName;
isEmptyAccess = parent;
} else if (parent is PrefixedIdentifier) {
isEmptyIdentifier = parent.identifier;
isEmptyAccess = parent;
}
if (isEmptyIdentifier == null) {
return;
}
// Should be "isEmpty".
var propertyElement = isEmptyIdentifier.staticElement;
if (propertyElement == null || 'isEmpty' != propertyElement.name) {
return;
}
// Should have "isNotEmpty".
var propertyTarget = propertyElement.enclosingElement;
if (propertyTarget == null ||
getChildren(propertyTarget, 'isNotEmpty').isEmpty) {
return;
}
// Walk up any parentheses above the isEmpty / isNotEmpty.
var isEmptyParent = isEmptyAccess.parent;
while (isEmptyParent is ParenthesizedExpression) {
isEmptyParent = isEmptyParent.parent;
}
// Should be in PrefixExpression.
if (isEmptyParent is PrefixExpression) {
// Should be !
if (isEmptyParent.operator.type != TokenType.BANG) {
return;
}
rule.reportLint(isEmptyParent);
}
}
}