Merge pull request #686 from BBasile/issue-685
fix #685 - Useless final attribute detects false positives merged-on-behalf-of: Sebastian Wilzbach <sebi.wilzbach@gmail.com>
This commit is contained in:
commit
44e0092b88
|
@ -149,12 +149,14 @@ public:
|
|||
undoBlockStatic = true;
|
||||
}
|
||||
|
||||
const bool wasFinalAggr = _finalAggregate;
|
||||
scope(exit)
|
||||
{
|
||||
d.accept(this);
|
||||
_parent = savedParent;
|
||||
if (undoBlockStatic)
|
||||
_blockStatic = false;
|
||||
_finalAggregate = wasFinalAggr;
|
||||
}
|
||||
|
||||
if (!d.attributeDeclaration &&
|
||||
|
@ -402,5 +404,14 @@ public:
|
|||
FinalAttributeChecker.MSGB.format(FinalAttributeChecker.MESSAGE.class_s)
|
||||
), sac);
|
||||
|
||||
|
||||
assertAnalyzerWarnings(q{
|
||||
class Statement
|
||||
{
|
||||
final class UsesEH{}
|
||||
final void comeFrom(){}
|
||||
}
|
||||
}, sac);
|
||||
|
||||
stderr.writeln("Unittest for FinalAttributeChecker passed.");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue