fix #791
This commit is contained in:
parent
9b171c46d2
commit
14ba4af4bd
|
@ -35,17 +35,45 @@ final class FunctionAttributeCheck : BaseAnalyzer
|
||||||
override void visit(const InterfaceDeclaration dec)
|
override void visit(const InterfaceDeclaration dec)
|
||||||
{
|
{
|
||||||
const t = inInterface;
|
const t = inInterface;
|
||||||
|
const t2 = inAggregate;
|
||||||
inInterface = true;
|
inInterface = true;
|
||||||
|
inAggregate = true;
|
||||||
dec.accept(this);
|
dec.accept(this);
|
||||||
inInterface = t;
|
inInterface = t;
|
||||||
|
inAggregate = t2;
|
||||||
}
|
}
|
||||||
|
|
||||||
override void visit(const ClassDeclaration dec)
|
override void visit(const ClassDeclaration dec)
|
||||||
{
|
{
|
||||||
const t = inInterface;
|
const t = inInterface;
|
||||||
|
const t2 = inAggregate;
|
||||||
inInterface = false;
|
inInterface = false;
|
||||||
|
inAggregate = true;
|
||||||
dec.accept(this);
|
dec.accept(this);
|
||||||
inInterface = t;
|
inInterface = t;
|
||||||
|
inAggregate = t2;
|
||||||
|
}
|
||||||
|
|
||||||
|
override void visit(const StructDeclaration dec)
|
||||||
|
{
|
||||||
|
const t = inInterface;
|
||||||
|
const t2 = inAggregate;
|
||||||
|
inInterface = false;
|
||||||
|
inAggregate = true;
|
||||||
|
dec.accept(this);
|
||||||
|
inInterface = t;
|
||||||
|
inAggregate = t2;
|
||||||
|
}
|
||||||
|
|
||||||
|
override void visit(const UnionDeclaration dec)
|
||||||
|
{
|
||||||
|
const t = inInterface;
|
||||||
|
const t2 = inAggregate;
|
||||||
|
inInterface = false;
|
||||||
|
inAggregate = true;
|
||||||
|
dec.accept(this);
|
||||||
|
inInterface = t;
|
||||||
|
inAggregate = t2;
|
||||||
}
|
}
|
||||||
|
|
||||||
override void visit(const AttributeDeclaration dec)
|
override void visit(const AttributeDeclaration dec)
|
||||||
|
@ -59,7 +87,7 @@ final class FunctionAttributeCheck : BaseAnalyzer
|
||||||
|
|
||||||
override void visit(const FunctionDeclaration dec)
|
override void visit(const FunctionDeclaration dec)
|
||||||
{
|
{
|
||||||
if (dec.parameters.parameters.length == 0)
|
if (dec.parameters.parameters.length == 0 && inAggregate)
|
||||||
{
|
{
|
||||||
bool foundConst;
|
bool foundConst;
|
||||||
bool foundProperty;
|
bool foundProperty;
|
||||||
|
@ -115,6 +143,7 @@ final class FunctionAttributeCheck : BaseAnalyzer
|
||||||
|
|
||||||
private:
|
private:
|
||||||
bool inInterface;
|
bool inInterface;
|
||||||
|
bool inAggregate;
|
||||||
enum string ABSTRACT_MESSAGE = "'abstract' attribute is redundant in interface declarations";
|
enum string ABSTRACT_MESSAGE = "'abstract' attribute is redundant in interface declarations";
|
||||||
enum string KEY = "dscanner.confusing.function_attributes";
|
enum string KEY = "dscanner.confusing.function_attributes";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue