Merge pull request #576 from wilzbach/has-public-examples-deprecated

Ignore has_public_example for deprecated symbols
merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
This commit is contained in:
The Dlang Bot 2018-03-30 11:49:33 +02:00 committed by GitHub
commit 8b52e513b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

View File

@ -44,6 +44,12 @@ class HasPublicExampleCheck : BaseAnalyzer
// check all public top-level declarations
foreach (decl; mod.declarations)
{
if (decl.attributes.any!(a => a.deprecated_ !is null))
{
lastDecl = null;
continue;
}
if (!isPublic(decl.attributes))
{
checkLastDecl();
@ -316,6 +322,12 @@ unittest
unittest {}
}, sac);
// deprecated symbols shouldn't require a test
assertAnalyzerWarnings(q{
///
deprecated void dirName(C)(C[] path) {}
}, sac);
stderr.writeln("Unittest for HasPublicExampleCheck passed.");
}