parent
e5a73fa0ef
commit
378cbcc6bd
|
@ -166,14 +166,9 @@ final class UnusedVariableCheck : BaseAnalyzer
|
||||||
|
|
||||||
override void visit(const AssignExpression assignExp)
|
override void visit(const AssignExpression assignExp)
|
||||||
{
|
{
|
||||||
if (assignExp.ternaryExpression !is null)
|
interestDepth++;
|
||||||
assignExp.ternaryExpression.accept(this);
|
assignExp.accept(this);
|
||||||
if (assignExp.expression !is null)
|
interestDepth--;
|
||||||
{
|
|
||||||
interestDepth++;
|
|
||||||
assignExp.expression.accept(this);
|
|
||||||
interestDepth--;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override void visit(const TemplateDeclaration templateDeclaration)
|
override void visit(const TemplateDeclaration templateDeclaration)
|
||||||
|
@ -542,6 +537,13 @@ private:
|
||||||
auto cb2 = delegate(size_t a) {}; // [warn]: Parameter a is never used.
|
auto cb2 = delegate(size_t a) {}; // [warn]: Parameter a is never used.
|
||||||
cb2(3);
|
cb2(3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void oops ()
|
||||||
|
{
|
||||||
|
class Identity { int val; }
|
||||||
|
Identity v;
|
||||||
|
v.val = 0;
|
||||||
|
}
|
||||||
|
|
||||||
bool hasDittos(int decl)
|
bool hasDittos(int decl)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue