diff --git a/.travis.sh b/.travis.sh index ae97d92..fc8bbd2 100755 --- a/.travis.sh +++ b/.travis.sh @@ -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 diff --git a/src/dscanner/analysis/properly_documented_public_functions.d b/src/dscanner/analysis/properly_documented_public_functions.d index 7b1f86e..a711b85 100644 --- a/src/dscanner/analysis/properly_documented_public_functions.d +++ b/src/dscanner/analysis/properly_documented_public_functions.d @@ -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) diff --git a/src/dscanner/analysis/unused.d b/src/dscanner/analysis/unused.d index 141164f..5b06ad2 100644 --- a/src/dscanner/analysis/unused.d +++ b/src/dscanner/analysis/unused.d @@ -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.