update to dparse 0.10.x (#713)

This commit is contained in:
BBasile 2018-11-22 22:57:25 +01:00 committed by GitHub
parent 6928051bc5
commit f585c383f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 65 additions and 74 deletions

@ -1 +1 @@
Subproject commit 47f471114ad272dc0cd41996c7977413d7a68d63 Subproject commit a8ffcc99d79b2b1195b7aac169a183706c2c9ec0

View File

@ -12,11 +12,11 @@
"StdLoggerDisableWarning" "StdLoggerDisableWarning"
], ],
"dependencies" : { "dependencies" : {
"libdparse": "~>0.9.10", "libdparse": "~>0.10.8",
"dsymbol" : "~>0.4.8", "dsymbol" : "~>0.5.3",
"inifiled" : "~>1.3.1", "inifiled" : "~>1.3.1",
"emsi_containers" : "~>0.8.0-alpha.7", "emsi_containers" : "~>0.8.0-alpha.7",
"libddoc" : "~>0.4.0", "libddoc" : "~>0.5.0",
"stdx-allocator" : "~>2.77.4" "stdx-allocator" : "~>2.77.4"
}, },
"targetPath" : "bin", "targetPath" : "bin",

@ -1 +1 @@
Subproject commit e1dae8ec11e03904ece4c36ae4fd497ebbbeb820 Subproject commit bf0472714f435452c253fd7755d838e383cee987

@ -1 +1 @@
Subproject commit f8460d0d3581bebd41ee8629bd3e253c94c8a387 Subproject commit fc3f8e6da9777ab3cef41933cfc5b36522d3b8a7

View File

@ -29,7 +29,7 @@ final class AssertWithoutMessageCheck : BaseAnalyzer
override void visit(const AssertExpression expr) override void visit(const AssertExpression expr)
{ {
if (expr.message is null) if (expr.assertArguments && expr.assertArguments.message is null)
addErrorMessage(expr.line, expr.column, KEY, MESSAGE); addErrorMessage(expr.line, expr.column, KEY, MESSAGE);
} }

View File

@ -53,7 +53,7 @@ public:
decl.accept(this); decl.accept(this);
if (decl.functionBody && autoFun && !_returns[$-1]) if (decl.functionBody.specifiedFunctionBody && autoFun && !_returns[$-1])
addErrorMessage(decl.name.line, decl.name.column, KEY, MESSAGE); addErrorMessage(decl.name.line, decl.name.column, KEY, MESSAGE);
} }
@ -64,7 +64,7 @@ public:
rst.accept(this); rst.accept(this);
} }
override void visit(const(AssertExpression) exp) override void visit(const(AssertArguments) exp)
{ {
exp.accept(this); exp.accept(this);
if (_returns.length) if (_returns.length)

View File

@ -126,11 +126,11 @@ unittest
assertAnalyzerWarnings(q{ assertAnalyzerWarnings(q{
void foo(R)(R r) void foo(R)(R r)
if (R == int) if (R == null)
{} {}
void foo(R)(R r) void foo(R)(R r)
if (R == int) // [warn]: %s if (R == null) // [warn]: %s
{} {}
}c.format( }c.format(
IfConstraintsIndentCheck.MESSAGE, IfConstraintsIndentCheck.MESSAGE,
@ -138,15 +138,15 @@ void foo(R)(R r)
assertAnalyzerWarnings(q{ assertAnalyzerWarnings(q{
void foo(R)(R r) void foo(R)(R r)
if (R == int) if (R == null)
{} {}
void foo(R)(R r) void foo(R)(R r)
if (R == int) // [warn]: %s if (R == null) // [warn]: %s
{} {}
void foo(R)(R r) void foo(R)(R r)
if (R == int) // [warn]: %s if (R == null) // [warn]: %s
{} {}
}c.format( }c.format(
IfConstraintsIndentCheck.MESSAGE, IfConstraintsIndentCheck.MESSAGE,
@ -155,15 +155,15 @@ if (R == int) // [warn]: %s
assertAnalyzerWarnings(q{ assertAnalyzerWarnings(q{
struct Foo(R) struct Foo(R)
if (R == int) if (R == null)
{} {}
struct Foo(R) struct Foo(R)
if (R == int) // [warn]: %s if (R == null) // [warn]: %s
{} {}
struct Foo(R) struct Foo(R)
if (R == int) // [warn]: %s if (R == null) // [warn]: %s
{} {}
}c.format( }c.format(
IfConstraintsIndentCheck.MESSAGE, IfConstraintsIndentCheck.MESSAGE,
@ -188,33 +188,33 @@ if (is(typeof(Num.init >= 0)) && is(typeof(-Num.init)) &&
assertAnalyzerWarnings(q{ assertAnalyzerWarnings(q{
struct Foo(R) struct Foo(R)
if if
(R == int) (R == null)
{} {}
struct Foo(R) struct Foo(R)
if if
(R == int) (R == null)
{} {}
struct Foo(R) struct Foo(R)
if if
(R == int) // [warn]: %s (R == null) // [warn]: %s
{} {}
struct Foo(R) struct Foo(R)
if ( if (
R == int) R == null)
{} {}
struct Foo(R) struct Foo(R)
if ( if (
R == int R == null
) )
{} {}
struct Foo(R) struct Foo(R)
if ( if (
R == int // [warn]: %s R == null // [warn]: %s
) {} ) {}
}c.format( }c.format(
IfConstraintsIndentCheck.MESSAGE, IfConstraintsIndentCheck.MESSAGE,

View File

@ -42,11 +42,8 @@ final class IncorrectInfiniteRangeCheck : BaseAnalyzer
override void visit(const FunctionBody fb) override void visit(const FunctionBody fb)
{ {
if (fb.bodyStatement !is null) if (fb.specifiedFunctionBody && fb.specifiedFunctionBody.blockStatement !is null)
visit(fb.bodyStatement.blockStatement); visit(fb.specifiedFunctionBody.blockStatement);
else
if (fb.blockStatement !is null)
visit(fb.blockStatement);
} }
override void visit(const BlockStatement bs) override void visit(const BlockStatement bs)

View File

@ -8,6 +8,7 @@ module dscanner.analysis.lambda_return_check;
import dparse.ast; import dparse.ast;
import dparse.lexer; import dparse.lexer;
import dscanner.analysis.base; import dscanner.analysis.base;
import dscanner.utils : safeAccess;
final class LambdaReturnCheck : BaseAnalyzer final class LambdaReturnCheck : BaseAnalyzer
{ {
@ -20,23 +21,14 @@ final class LambdaReturnCheck : BaseAnalyzer
override void visit(const FunctionLiteralExpression fLit) override void visit(const FunctionLiteralExpression fLit)
{ {
if (fLit.assignExpression is null) auto fe = safeAccess(fLit).assignExpression.as!UnaryExpression
return; .primaryExpression.functionLiteralExpression.unwrap;
const UnaryExpression unary = cast(const UnaryExpression) fLit.assignExpression;
if (unary is null) if (fe is null || fe.parameters !is null || fe.identifier != tok!"" ||
return; fe.specifiedFunctionBody is null || fe.specifiedFunctionBody.blockStatement is null)
if (unary.primaryExpression is null) {
return;
if (unary.primaryExpression.functionLiteralExpression is null)
return;
if (unary.primaryExpression.functionLiteralExpression.parameters !is null)
return;
if (unary.primaryExpression.functionLiteralExpression.identifier != tok!"")
return;
if (unary.primaryExpression.functionLiteralExpression.functionBody is null)
return;
if (unary.primaryExpression.functionLiteralExpression.functionBody.blockStatement is null)
return; return;
}
addErrorMessage(fLit.line, fLit.column, KEY, "This lambda returns a lambda. Add parenthesis to clarify."); addErrorMessage(fLit.line, fLit.column, KEY, "This lambda returns a lambda. Add parenthesis to clarify.");
} }

View File

@ -90,8 +90,9 @@ final class StyleChecker : BaseAnalyzer
pushWinStyle(la.identifier.text.length && la.identifier.text == "Windows"); pushWinStyle(la.identifier.text.length && la.identifier.text == "Windows");
} }
if (dec.functionBody || (!dec.functionBody && !winStyle())) if (dec.functionBody.specifiedFunctionBody ||
checkLowercaseName("Function", dec.name); (dec.functionBody.missingFunctionBody && !winStyle()))
checkLowercaseName("Function", dec.name);
if (p) if (p)
popWinStyle; popWinStyle;

View File

@ -31,22 +31,28 @@ final class UnusedLabelCheck : BaseAnalyzer
popScope(); popScope();
} }
override void visit(const FunctionLiteralExpression flit)
{
if (flit.specifiedFunctionBody)
{
pushScope();
flit.specifiedFunctionBody.accept(this);
popScope();
}
}
override void visit(const FunctionBody functionBody) override void visit(const FunctionBody functionBody)
{ {
if (functionBody.blockStatement !is null) if (functionBody.specifiedFunctionBody !is null)
{ {
pushScope(); pushScope();
functionBody.blockStatement.accept(this); functionBody.specifiedFunctionBody.accept(this);
popScope(); popScope();
} }
if (functionBody.bodyStatement !is null) if (functionBody.missingFunctionBody && functionBody.missingFunctionBody.functionContracts)
{ functionBody.missingFunctionBody.functionContracts.each!((a){pushScope(); a.accept(this); popScope();});
pushScope(); if (functionBody.specifiedFunctionBody && functionBody.specifiedFunctionBody.functionContracts)
functionBody.bodyStatement.accept(this); functionBody.specifiedFunctionBody.functionContracts.each!((a){pushScope(); a.accept(this); popScope();});
popScope();
}
functionBody.outStatements.each!((a){pushScope(); a.accept(this); popScope();});
functionBody.inStatements.each!((a){pushScope(); a.accept(this); popScope();});
} }
override void visit(const LabeledStatement labeledStatement) override void visit(const LabeledStatement labeledStatement)

View File

@ -37,7 +37,7 @@ final class UselessAssertCheck : BaseAnalyzer
{ {
import std.conv : to; import std.conv : to;
UnaryExpression unary = cast(UnaryExpression) ae.assertion; UnaryExpression unary = cast(UnaryExpression) ae.assertArguments.assertion;
if (unary is null) if (unary is null)
return; return;
if (unary.primaryExpression is null) if (unary.primaryExpression is null)

View File

@ -106,21 +106,6 @@ class XMLPrinter : ASTVisitor
output.writeln("</asmInstruction>"); output.writeln("</asmInstruction>");
} }
override void visit(const AssertExpression assertExpression)
{
output.writeln("<assertExpression>");
output.writeln("<assertion>");
assertExpression.assertion.accept(this);
output.writeln("</assertion>");
if (assertExpression.message !is null)
{
output.writeln("<message>");
assertExpression.message.accept(this);
output.writeln("</message>");
}
output.writeln("</assertExpression>");
}
override void visit(const AssignExpression assignExpression) override void visit(const AssignExpression assignExpression)
{ {
if (assignExpression.expression is null) if (assignExpression.expression is null)
@ -1070,11 +1055,12 @@ class XMLPrinter : ASTVisitor
override void visit(const AsmUnaExp asmUnaExp) { mixin (tagAndAccept!"asmUnaExp"); } override void visit(const AsmUnaExp asmUnaExp) { mixin (tagAndAccept!"asmUnaExp"); }
override void visit(const AsmXorExp asmXorExp) { mixin (tagAndAccept!"asmXorExp"); } override void visit(const AsmXorExp asmXorExp) { mixin (tagAndAccept!"asmXorExp"); }
override void visit(const AssocArrayLiteral assocArrayLiteral) { mixin (tagAndAccept!"assocArrayLiteral"); } override void visit(const AssocArrayLiteral assocArrayLiteral) { mixin (tagAndAccept!"assocArrayLiteral"); }
override void visit(const AssertExpression assertExpression) { mixin (tagAndAccept!"assertExpression"); }
override void visit(const AssertArguments assertArguments) { mixin (tagAndAccept!"assertArguments"); }
override void visit(const AttributeDeclaration attributeDeclaration) { mixin (tagAndAccept!"attributeDeclaration"); } override void visit(const AttributeDeclaration attributeDeclaration) { mixin (tagAndAccept!"attributeDeclaration"); }
override void visit(const BaseClass baseClass) { mixin (tagAndAccept!"baseClass"); } override void visit(const BaseClass baseClass) { mixin (tagAndAccept!"baseClass"); }
override void visit(const BaseClassList baseClassList) { mixin (tagAndAccept!"baseClassList"); } override void visit(const BaseClassList baseClassList) { mixin (tagAndAccept!"baseClassList"); }
override void visit(const BlockStatement blockStatement) { mixin (tagAndAccept!"blockStatement"); } override void visit(const BlockStatement blockStatement) { mixin (tagAndAccept!"blockStatement"); }
override void visit(const BodyStatement bodyStatement) { mixin (tagAndAccept!"bodyStatement"); }
override void visit(const CaseStatement caseStatement) { mixin (tagAndAccept!"caseStatement"); } override void visit(const CaseStatement caseStatement) { mixin (tagAndAccept!"caseStatement"); }
override void visit(const CastExpression castExpression) { mixin (tagAndAccept!"castExpression"); } override void visit(const CastExpression castExpression) { mixin (tagAndAccept!"castExpression"); }
override void visit(const CastQualifier castQualifier) { mixin (tagAndAccept!"castQualifier"); } override void visit(const CastQualifier castQualifier) { mixin (tagAndAccept!"castQualifier"); }
@ -1109,6 +1095,8 @@ class XMLPrinter : ASTVisitor
override void visit(const ImportExpression importExpression) { mixin (tagAndAccept!"importExpression"); } override void visit(const ImportExpression importExpression) { mixin (tagAndAccept!"importExpression"); }
override void visit(const IndexExpression indexExpression) { mixin (tagAndAccept!"indexExpression"); } override void visit(const IndexExpression indexExpression) { mixin (tagAndAccept!"indexExpression"); }
override void visit(const InStatement inStatement) { mixin (tagAndAccept!"inStatement"); } override void visit(const InStatement inStatement) { mixin (tagAndAccept!"inStatement"); }
override void visit(const InContractExpression inContractExpression) { mixin (tagAndAccept!"inContractExpression"); }
override void visit(const InOutContractExpression inOutContractExpression) { mixin (tagAndAccept!"inOutContractExpression"); }
override void visit(const KeyValuePairs keyValuePairs) { mixin (tagAndAccept!"keyValuePairs"); } override void visit(const KeyValuePairs keyValuePairs) { mixin (tagAndAccept!"keyValuePairs"); }
override void visit(const MixinExpression mixinExpression) { mixin (tagAndAccept!"mixinExpression"); } override void visit(const MixinExpression mixinExpression) { mixin (tagAndAccept!"mixinExpression"); }
override void visit(const MixinTemplateDeclaration mixinTemplateDeclaration) { mixin (tagAndAccept!"mixinTemplateDeclaration"); } override void visit(const MixinTemplateDeclaration mixinTemplateDeclaration) { mixin (tagAndAccept!"mixinTemplateDeclaration"); }

View File

@ -145,6 +145,13 @@ if (is(M == class))
/// Unprotect the class instance. /// Unprotect the class instance.
alias unwrap = m; alias unwrap = m;
/// Allows cast to interfaces and classes inside the chain.
auto ref as(A)() @trusted
if (!__traits(hasMember, M, "as") && (is(A == class) || is(A == interface)))
{
return SafeAccess!(A)(cast(A) m);
}
/// Handles safe access. /// Handles safe access.
auto ref opDispatch(string member, A...)(auto ref A a) auto ref opDispatch(string member, A...)(auto ref A a)
{ {
@ -177,7 +184,7 @@ if (is(M == class))
else else
{ {
if (m) if (m)
__traits(getMember, m, member)(a); __traits(getMember, m, member)(a);
} }
} }
else else