From 93418e3aa92329e913ad078f608d8255c3c2e73c Mon Sep 17 00:00:00 2001 From: Sebastian Wilzbach Date: Tue, 14 May 2019 16:09:24 +0200 Subject: [PATCH] Fix #760 - ignore deprecated symbols in the undocumented check --- src/dscanner/analysis/undocumented.d | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/dscanner/analysis/undocumented.d b/src/dscanner/analysis/undocumented.d index 01f5584..439c237 100644 --- a/src/dscanner/analysis/undocumented.d +++ b/src/dscanner/analysis/undocumented.d @@ -150,6 +150,13 @@ private: override void visit(const T declaration) { import std.traits : hasMember; + static if (hasMember!(T, "storageClasses")) + { + // stop at declarations with a deprecated in their storage classes + foreach (sc; declaration.storageClasses) + if (sc.deprecated_ !is null) + return; + } if (currentIsInteresting()) { @@ -248,7 +255,7 @@ private: bool currentIsInteresting() { return stack[$ - 1].protection == tok!"public" - && !stack[$ - 1].isOverride && !stack[$ - 1].isDisabled && !stack[$ - 1].isDeprecated; + && !getOverride() && !getDisabled() && !getDeprecated(); } void set(IdType p) @@ -332,6 +339,12 @@ unittest union U{} }, sac); + // https://github.com/dlang-community/D-Scanner/issues/760 + assertAnalyzerWarnings(q{ + deprecated auto func(){} + deprecated auto func()(){} + }, sac); + stderr.writeln("Unittest for UndocumentedDeclarationCheck passed."); }