This commit is contained in:
Hackerpilot 2016-01-25 15:15:01 -08:00
parent 314b0ef3df
commit b5102bcfd5
2 changed files with 8 additions and 1 deletions

@ -1 +1 @@
Subproject commit b1f505857e89277bd72e3ea50bbd94d56b686abe
Subproject commit 725529f0da46d11b1599337d501725f2bbd29ef3

View File

@ -41,6 +41,13 @@ class LabelVarNameCheck : BaseAnalyzer
popScope();
}
override void visit(const CaseStatement caseStatement)
{
pushScope();
caseStatement.accept(this);
popScope();
}
override void visit(const VariableDeclaration var)
{
foreach (dec; var.declarators)