blob: 1293c0c47ef2206a1484be852a9e31438eb82992 [file] [log] [blame]
// Copyright (c) 2018, 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';
import 'package:analyzer/dart/ast/visitor.dart';
import 'package:analyzer/dart/element/element.dart';
import 'package:analyzer/dart/element/type.dart';
import '../analyzer.dart';
const _desc =
r"Don't use the Null type, unless you are positive that you don't want void.";
const _details = r'''
**DON'T** use the type Null where void would work.
**BAD:**
```dart
Null f() {}
Future<Null> f() {}
Stream<Null> f() {}
f(Null x) {}
```
**GOOD:**
```dart
void f() {}
Future<void> f() {}
Stream<void> f() {}
f(void x) {}
```
Some exceptions include formulating special function types:
```dart
Null Function(Null, Null);
```
and for making empty literals which are safe to pass into read-only locations
for any type of map or list:
```dart
<Null>[];
<int, Null>{};
```
''';
class PreferVoidToNull extends LintRule {
static const LintCode code = LintCode(
'prefer_void_to_null', "Unnecessary use of the type 'Null'.",
correctionMessage: "Try using 'void' instead.");
PreferVoidToNull()
: super(
name: 'prefer_void_to_null',
description: _desc,
details: _details,
group: Group.errors);
@override
LintCode get lintCode => code;
@override
void registerNodeProcessors(
NodeLintRegistry registry, LinterContext context) {
var visitor = _Visitor(this, context);
registry.addNamedType(this, visitor);
}
}
class _Visitor extends SimpleAstVisitor<void> {
final LintRule rule;
final LinterContext context;
_Visitor(this.rule, this.context);
/// todo(pq): pull up to a utility.
ExecutableElement? getOverriddenMember(Element? member) {
if (member == null) {
return null;
}
var classElement = member.thisOrAncestorOfType<ClassElement>();
if (classElement == null) {
return null;
}
var name = member.name;
if (name == null) {
return null;
}
var libraryUri = classElement.library.source.uri;
return context.inheritanceManager.getInherited(
classElement.thisType,
Name(libraryUri, name),
);
}
bool isFutureOrVoid(DartType type) {
if (!type.isDartAsyncFutureOr) return false;
if (type is! InterfaceType) return false;
return type.typeArguments.first.isVoid;
}
bool isVoidIncompatibleOverride(MethodDeclaration parent, AstNode node) {
// Make sure we're checking a return type.
if (parent.returnType?.offset != node.offset) return false;
var member = getOverriddenMember(parent.declaredElement);
if (member == null) return false;
var returnType = member.returnType;
if (returnType.isVoid) return false;
if (isFutureOrVoid(returnType)) return false;
return true;
}
@override
void visitNamedType(NamedType node) {
var nodeType = node.type;
if (nodeType == null || !nodeType.isDartCoreNull) {
return;
}
var parent = node.parent;
// Null Function()
if (parent is GenericFunctionType) {
return;
}
// Function(Null)
if (parent is SimpleFormalParameter &&
parent.parent is FormalParameterList &&
parent.parent?.parent is GenericFunctionType) {
return;
}
// <Null>[] or <Null, Null>{}
if (parent is TypeArgumentList) {
var literal = parent.parent;
if (literal is ListLiteral && literal.elements.isEmpty) {
return;
} else if (literal is SetOrMapLiteral && literal.elements.isEmpty) {
return;
}
}
// extension _ on Null {}
if (parent is ExtensionDeclaration) {
return;
}
// https://github.com/dart-lang/linter/issues/2792
if (parent is MethodDeclaration &&
isVoidIncompatibleOverride(parent, node)) {
return;
}
rule.reportLint(node.name);
}
}