Clearify key names

This commit is contained in:
Hiroki Noda 2024-05-06 01:04:18 +09:00 committed by Jan Jurzitza
parent 433d1eb73e
commit 17f3286fef
16 changed files with 62 additions and 26 deletions

View File

@ -32,11 +32,13 @@ final class AsmStyleCheck : BaseAnalyzer
if (brExp.asmBrExp !is null && brExp.asmBrExp.asmUnaExp !is null if (brExp.asmBrExp !is null && brExp.asmBrExp.asmUnaExp !is null
&& brExp.asmBrExp.asmUnaExp.asmPrimaryExp !is null) && brExp.asmBrExp.asmUnaExp.asmPrimaryExp !is null)
{ {
addErrorMessage(brExp, "dscanner.confusing.brexp", addErrorMessage(brExp, KEY,
"This is confusing because it looks like an array index. Rewrite a[1] as [a + 1] to clarify."); "This is confusing because it looks like an array index. Rewrite a[1] as [a + 1] to clarify.");
} }
brExp.accept(this); brExp.accept(this);
} }
private enum string KEY = "dscanner.confusing.brexp";
} }
unittest unittest

View File

@ -27,12 +27,14 @@ final class DeleteCheck : BaseAnalyzer
override void visit(const DeleteExpression d) override void visit(const DeleteExpression d)
{ {
addErrorMessage(d.tokens[0], "dscanner.deprecated.delete_keyword", addErrorMessage(d.tokens[0], KEY,
"Avoid using the 'delete' keyword.", "Avoid using the 'delete' keyword.",
[AutoFix.replacement(d.tokens[0], `destroy(`, "Replace delete with destroy()") [AutoFix.replacement(d.tokens[0], `destroy(`, "Replace delete with destroy()")
.concat(AutoFix.insertionAfter(d.tokens[$ - 1], ")"))]); .concat(AutoFix.insertionAfter(d.tokens[$ - 1], ")"))]);
d.accept(this); d.accept(this);
} }
private enum string KEY = "dscanner.deprecated.delete_keyword";
} }
unittest unittest

View File

@ -93,7 +93,7 @@ final class DuplicateAttributeCheck : BaseAnalyzer
if (hasAttribute) if (hasAttribute)
{ {
string message = "Attribute '%s' is duplicated.".format(attributeName); string message = "Attribute '%s' is duplicated.".format(attributeName);
addErrorMessage(tokens, "dscanner.unnecessary.duplicate_attribute", message, addErrorMessage(tokens, KEY, message,
[AutoFix.replacement(tokens, "", "Remove second attribute " ~ attributeName)]); [AutoFix.replacement(tokens, "", "Remove second attribute " ~ attributeName)]);
} }
@ -149,6 +149,8 @@ final class DuplicateAttributeCheck : BaseAnalyzer
return null; return null;
} }
private enum string KEY = "dscanner.unnecessary.duplicate_attribute";
} }
unittest unittest

View File

@ -47,7 +47,7 @@ final class EnumArrayLiteralCheck : BaseAnalyzer
if (part.initializer.nonVoidInitializer.arrayInitializer is null) if (part.initializer.nonVoidInitializer.arrayInitializer is null)
continue; continue;
addErrorMessage(part.initializer.nonVoidInitializer, addErrorMessage(part.initializer.nonVoidInitializer,
"dscanner.performance.enum_array_literal", KEY,
"This enum may lead to unnecessary allocation at run-time." "This enum may lead to unnecessary allocation at run-time."
~ " Use 'static immutable " ~ " Use 'static immutable "
~ part.identifier.text ~ " = [ ...' instead.", ~ part.identifier.text ~ " = [ ...' instead.",
@ -58,6 +58,8 @@ final class EnumArrayLiteralCheck : BaseAnalyzer
} }
autoDec.accept(this); autoDec.accept(this);
} }
private enum string KEY = "dscanner.performance.enum_array_literal";
} }
unittest unittest

View File

@ -88,6 +88,8 @@ final class HasPublicExampleCheck : BaseAnalyzer
private: private:
enum string KEY = "dscanner.style.has_public_example";
bool hasDitto(Decl)(const Decl decl) bool hasDitto(Decl)(const Decl decl)
{ {
import ddoc.comments : parseComment; import ddoc.comments : parseComment;
@ -164,7 +166,7 @@ private:
{ {
import std.string : format; import std.string : format;
addErrorMessage(tokens, "dscanner.style.has_public_example", name is null addErrorMessage(tokens, KEY, name is null
? "Public declaration has no documented example." ? "Public declaration has no documented example."
: format("Public declaration '%s' has no documented example.", name)); : format("Public declaration '%s' has no documented example.", name));
} }

View File

@ -39,7 +39,7 @@ final class IfElseSameCheck : BaseAnalyzer
// extend 1 past, so we include the `else` token // extend 1 past, so we include the `else` token
tokens = (tokens.ptr - 1)[0 .. tokens.length + 1]; tokens = (tokens.ptr - 1)[0 .. tokens.length + 1];
addErrorMessage(tokens, addErrorMessage(tokens,
"dscanner.bugs.if_else_same", "'Else' branch is identical to 'Then' branch."); IF_ELSE_SAME_KEY, "'Else' branch is identical to 'Then' branch.");
} }
ifStatement.accept(this); ifStatement.accept(this);
} }
@ -50,7 +50,7 @@ final class IfElseSameCheck : BaseAnalyzer
if (e !is null && assignExpression.operator == tok!"=" if (e !is null && assignExpression.operator == tok!"="
&& e.ternaryExpression == assignExpression.ternaryExpression) && e.ternaryExpression == assignExpression.ternaryExpression)
{ {
addErrorMessage(assignExpression, "dscanner.bugs.self_assignment", addErrorMessage(assignExpression, SELF_ASSIGNMENT_KEY,
"Left side of assignment operatior is identical to the right side."); "Left side of assignment operatior is identical to the right side.");
} }
assignExpression.accept(this); assignExpression.accept(this);
@ -62,7 +62,7 @@ final class IfElseSameCheck : BaseAnalyzer
&& andAndExpression.left == andAndExpression.right) && andAndExpression.left == andAndExpression.right)
{ {
addErrorMessage(andAndExpression.right, addErrorMessage(andAndExpression.right,
"dscanner.bugs.logic_operator_operands", LOGIC_OPERATOR_OPERANDS_KEY,
"Left side of logical and is identical to right side."); "Left side of logical and is identical to right side.");
} }
andAndExpression.accept(this); andAndExpression.accept(this);
@ -74,11 +74,17 @@ final class IfElseSameCheck : BaseAnalyzer
&& orOrExpression.left == orOrExpression.right) && orOrExpression.left == orOrExpression.right)
{ {
addErrorMessage(orOrExpression.right, addErrorMessage(orOrExpression.right,
"dscanner.bugs.logic_operator_operands", LOGIC_OPERATOR_OPERANDS_KEY,
"Left side of logical or is identical to right side."); "Left side of logical or is identical to right side.");
} }
orOrExpression.accept(this); orOrExpression.accept(this);
} }
private:
enum string IF_ELSE_SAME_KEY = "dscanner.bugs.if_else_same";
enum string SELF_ASSIGNMENT_KEY = "dscanner.bugs.self_assignment";
enum string LOGIC_OPERATOR_OPERANDS_KEY = "dscanner.bugs.logic_operator_operands";
} }
unittest unittest

View File

@ -60,6 +60,8 @@ final class LabelVarNameCheck : ScopedBaseAnalyzer
private: private:
enum string KEY = "dscanner.suspicious.label_var_same_name";
Thing[string][] stack; Thing[string][] stack;
template AggregateVisit(NodeType) template AggregateVisit(NodeType)
@ -88,7 +90,7 @@ private:
{ {
immutable thisKind = fromLabel ? "Label" : "Variable"; immutable thisKind = fromLabel ? "Label" : "Variable";
immutable otherKind = thing.isVar ? "variable" : "label"; immutable otherKind = thing.isVar ? "variable" : "label";
addErrorMessage(name, "dscanner.suspicious.label_var_same_name", addErrorMessage(name, KEY,
thisKind ~ " \"" ~ fqn ~ "\" has the same name as a " thisKind ~ " \"" ~ fqn ~ "\" has the same name as a "
~ otherKind ~ " defined on line " ~ to!string(thing.line) ~ "."); ~ otherKind ~ " defined on line " ~ to!string(thing.line) ~ ".");
} }

View File

@ -18,6 +18,8 @@ import dsymbol.scope_;
*/ */
final class LengthSubtractionCheck : BaseAnalyzer final class LengthSubtractionCheck : BaseAnalyzer
{ {
private enum string KEY = "dscanner.suspicious.length_subtraction";
alias visit = BaseAnalyzer.visit; alias visit = BaseAnalyzer.visit;
mixin AnalyzerInfo!"length_subtraction_check"; mixin AnalyzerInfo!"length_subtraction_check";
@ -40,7 +42,7 @@ final class LengthSubtractionCheck : BaseAnalyzer
if (l.identifierOrTemplateInstance is null if (l.identifierOrTemplateInstance is null
|| l.identifierOrTemplateInstance.identifier.text != "length") || l.identifierOrTemplateInstance.identifier.text != "length")
goto end; goto end;
addErrorMessage(addExpression, "dscanner.suspicious.length_subtraction", addErrorMessage(addExpression, KEY,
"Avoid subtracting from '.length' as it may be unsigned.", "Avoid subtracting from '.length' as it may be unsigned.",
[ [
AutoFix.insertionBefore(l.tokens[0], "cast(ptrdiff_t) ", "Cast to ptrdiff_t") AutoFix.insertionBefore(l.tokens[0], "cast(ptrdiff_t) ", "Cast to ptrdiff_t")

View File

@ -59,7 +59,7 @@ final class LocalImportCheck : BaseAnalyzer
if (singleImport.rename.text.length == 0) if (singleImport.rename.text.length == 0)
{ {
addErrorMessage(singleImport, addErrorMessage(singleImport,
"dscanner.suspicious.local_imports", "Local imports should specify" KEY, "Local imports should specify"
~ " the symbols being imported to avoid hiding local symbols."); ~ " the symbols being imported to avoid hiding local symbols.");
} }
} }
@ -68,6 +68,8 @@ final class LocalImportCheck : BaseAnalyzer
private: private:
enum string KEY = "dscanner.suspicious.local_imports";
mixin template visitThing(T) mixin template visitThing(T)
{ {
override void visit(const T thing) override void visit(const T thing)

View File

@ -39,12 +39,15 @@ public:
&& ((t.text.startsWith("0b") && !t.text.matchFirst(badBinaryRegex) && ((t.text.startsWith("0b") && !t.text.matchFirst(badBinaryRegex)
.empty) || !t.text.matchFirst(badDecimalRegex).empty)) .empty) || !t.text.matchFirst(badDecimalRegex).empty))
{ {
addErrorMessage(t, "dscanner.style.number_literals", addErrorMessage(t, KEY,
"Use underscores to improve number constant readability."); "Use underscores to improve number constant readability.");
} }
} }
private: private:
enum string KEY = "dscanner.style.number_literals";
auto badBinaryRegex = ctRegex!(`^0b[01]{9,}`); auto badBinaryRegex = ctRegex!(`^0b[01]{9,}`);
auto badDecimalRegex = ctRegex!(`^\d{5,}`); auto badDecimalRegex = ctRegex!(`^\d{5,}`);
} }

View File

@ -68,7 +68,7 @@ final class ObjectConstCheck : BaseAnalyzer
if (inAggregate && !constColon && !constBlock && !isDeclationDisabled if (inAggregate && !constColon && !constBlock && !isDeclationDisabled
&& isInteresting(fd.name.text) && !hasConst(fd.memberFunctionAttributes)) && isInteresting(fd.name.text) && !hasConst(fd.memberFunctionAttributes))
{ {
addErrorMessage(d.functionDeclaration.name, "dscanner.suspicious.object_const", addErrorMessage(d.functionDeclaration.name, KEY,
"Methods 'opCmp', 'toHash', 'opEquals', 'opCast', and/or 'toString' are non-const."); "Methods 'opCmp', 'toHash', 'opEquals', 'opCast', and/or 'toString' are non-const.");
} }
} }
@ -81,7 +81,11 @@ final class ObjectConstCheck : BaseAnalyzer
constBlock = false; constBlock = false;
} }
private static bool hasConst(const MemberFunctionAttribute[] attributes) private:
enum string KEY = "dscanner.suspicious.object_const";
static bool hasConst(const MemberFunctionAttribute[] attributes)
{ {
import std.algorithm : any; import std.algorithm : any;
@ -89,15 +93,14 @@ final class ObjectConstCheck : BaseAnalyzer
|| a.tokenType == tok!"immutable" || a.tokenType == tok!"inout"); || a.tokenType == tok!"immutable" || a.tokenType == tok!"inout");
} }
private static bool isInteresting(string name) static bool isInteresting(string name)
{ {
return name == "opCmp" || name == "toHash" || name == "opEquals" return name == "opCmp" || name == "toHash" || name == "opEquals"
|| name == "toString" || name == "opCast"; || name == "toString" || name == "opCast";
} }
private bool constBlock; bool constBlock;
private bool constColon; bool constColon;
} }
unittest unittest

View File

@ -59,9 +59,11 @@ final class RedundantStorageClassCheck : BaseAnalyzer
return; return;
auto t = vd.declarators[0].name; auto t = vd.declarators[0].name;
string message = REDUNDANT_VARIABLE_ATTRIBUTES.format(t.text, globalAttributes); string message = REDUNDANT_VARIABLE_ATTRIBUTES.format(t.text, globalAttributes);
addErrorMessage(t, "dscanner.unnecessary.duplicate_attribute", message); addErrorMessage(t, KEY, message);
} }
} }
private enum string KEY = "dscanner.unnecessary.duplicate_attribute";
} }
unittest unittest

View File

@ -146,6 +146,8 @@ final class UndocumentedDeclarationCheck : BaseAnalyzer
private: private:
enum string KEY = "dscanner.style.undocumented_declaration";
mixin template V(T) mixin template V(T)
{ {
override void visit(const T declaration) override void visit(const T declaration)
@ -223,7 +225,7 @@ private:
{ {
import std.string : format; import std.string : format;
addErrorMessage(range, "dscanner.style.undocumented_declaration", name is null addErrorMessage(range, KEY, name is null
? "Public declaration is undocumented." ? "Public declaration is undocumented."
: format("Public declaration '%s' is undocumented.", name)); : format("Public declaration '%s' is undocumented.", name));
} }

View File

@ -189,6 +189,8 @@ final class UnmodifiedFinder : BaseAnalyzer
private: private:
enum string KEY = "dscanner.suspicious.unmodified";
template PartsMightModify(T) template PartsMightModify(T)
{ {
override void visit(const T t) override void visit(const T t)
@ -300,7 +302,7 @@ private:
{ {
immutable string errorMessage = "Variable " ~ vi.name immutable string errorMessage = "Variable " ~ vi.name
~ " is never modified and could have been declared const or immutable."; ~ " is never modified and could have been declared const or immutable.";
addErrorMessage(vi.token, "dscanner.suspicious.unmodified", errorMessage); addErrorMessage(vi.token, KEY, errorMessage);
} }
tree = tree[0 .. $ - 1]; tree = tree[0 .. $ - 1];
} }

View File

@ -115,6 +115,8 @@ final class UnusedLabelCheck : BaseAnalyzer
private: private:
enum string KEY = "dscanner.suspicious.unused_label";
static struct Label static struct Label
{ {
string name; string name;
@ -144,7 +146,7 @@ private:
} }
else if (!label.used) else if (!label.used)
{ {
addErrorMessage(label.token, "dscanner.suspicious.unused_label", addErrorMessage(label.token, KEY,
"Label \"" ~ label.name ~ "\" is not used."); "Label \"" ~ label.name ~ "\" is not used.");
} }
} }

View File

@ -34,7 +34,7 @@ final class UselessInitializerChecker : BaseAnalyzer
private: private:
enum key = "dscanner.useless-initializer"; enum string KEY = "dscanner.useless-initializer";
version(unittest) version(unittest)
{ {
@ -161,7 +161,7 @@ public:
{ {
void warn(const BaseNode range) void warn(const BaseNode range)
{ {
addErrorMessage(range, key, msg); addErrorMessage(range, KEY, msg);
} }
} }
else else
@ -169,7 +169,7 @@ public:
import std.format : format; import std.format : format;
void warn(const BaseNode range) void warn(const BaseNode range)
{ {
addErrorMessage(range, key, msg.format(declarator.name.text)); addErrorMessage(range, KEY, msg.format(declarator.name.text));
} }
} }