fix - adaptation to correct DIP 1009 impl. was incomplete (#728)
fix - adaptation to correct DIP 1009 impl. was incomplete merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
This commit is contained in:
parent
83c89ddc22
commit
9ef6d0aec1
|
@ -13,5 +13,5 @@ else
|
|||
make lint
|
||||
git clone https://www.github.com/dlang/phobos.git --depth=1
|
||||
# just check that it doesn't crash
|
||||
cd phobos && ../bin/dscanner -S --config=.dscanner.ini || true
|
||||
cd phobos/std && ../../bin/dscanner -S --config=../.dscanner.ini || true
|
||||
fi
|
||||
|
|
|
@ -180,7 +180,7 @@ final class ProperlyDocumentedPublicFunctions : BaseAnalyzer
|
|||
import std.array : Appender;
|
||||
|
||||
// ignore header declaration for now
|
||||
if (decl.functionBody is null)
|
||||
if (!decl.functionBody || !decl.functionBody.specifiedFunctionBody)
|
||||
return;
|
||||
|
||||
if (nestedFuncs == 1)
|
||||
|
|
|
@ -49,7 +49,7 @@ final class UnusedVariableCheck : BaseAnalyzer
|
|||
override void visit(const FunctionDeclaration functionDec)
|
||||
{
|
||||
pushScope();
|
||||
if (functionDec.functionBody !is null)
|
||||
if (functionDec.functionBody && functionDec.functionBody.specifiedFunctionBody)
|
||||
{
|
||||
immutable bool ias = inAggregateScope;
|
||||
inAggregateScope = false;
|
||||
|
@ -473,6 +473,14 @@ private:
|
|||
*(cast(FieldType*)(retVal.ptr + byteIndex)) = item;
|
||||
}
|
||||
|
||||
// bug encountered after correct DIP 1009 impl in dparse
|
||||
version (StdDdoc)
|
||||
{
|
||||
bool isAbsolute(R)(R path) pure nothrow @safe
|
||||
if (isRandomAccessRange!R && isSomeChar!(ElementType!R) ||
|
||||
is(StringTypeOf!R));
|
||||
}
|
||||
|
||||
unittest
|
||||
{
|
||||
int a; // [warn]: Variable a is never used.
|
||||
|
|
Loading…
Reference in New Issue