blob: 251379e1fbb2599fc44a6569a2bfe42eca26996f [file] [log] [blame]
// Copyright (c) 2016, 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/analyzer.dart';
import 'package:analyzer/dart/ast/ast.dart';
import 'package:analyzer/dart/ast/token.dart';
import 'package:analyzer/dart/ast/visitor.dart';
import 'package:linter/src/analyzer.dart';
import 'package:linter/src/ast.dart';
const _desc = r'Prefer const with constant constructors.';
const _details = r'''
**PREFER** using `const` for instantiating constant constructors.
If a const constructor is available, it is preferable to use it.
**GOOD:**
```
class A {
const A();
}
void accessA() {
A a = const A();
}
```
**GOOD:**
```
class A {
final int x;
const A(this.x);
}
A foo(int x) => new A(x);
```
**BAD:**
```
class A {
const A();
}
void accessA() {
A a = new A();
}
```
''';
class PreferConstConstructors extends LintRule {
_Visitor _visitor;
PreferConstConstructors()
: super(
name: 'prefer_const_constructors',
description: _desc,
details: _details,
group: Group.style) {
_visitor = new _Visitor(this);
}
@override
AstVisitor getVisitor() => _visitor;
}
class _Visitor extends SimpleAstVisitor {
final LintRule rule;
_Visitor(this.rule);
@override
void visitInstanceCreationExpression(InstanceCreationExpression node) {
if (!node.isConst &&
node.staticElement != null &&
node.staticElement.isConst) {
final typeProvider = node.staticElement.context.typeProvider;
if (node.staticElement.enclosingElement.type == typeProvider.objectType) {
// Skip lint for `new Object()`, because it can be used for Id creation.
return;
}
bool hasConstError;
// put a fake const keyword and check if there's const error
final oldKeyword = node.keyword;
node.keyword = new KeywordToken(Keyword.CONST, node.offset);
try {
hasConstError = hasErrorWithConstantVerifier(node);
} finally {
// restore old keyword
node.keyword = oldKeyword;
}
if (!hasConstError) {
rule.reportLint(node);
}
}
}
}