Apply old formatter to make CI check pass

This commit is contained in:
Tom Hvitved
2020-11-24 11:26:47 +01:00
parent 74f0a8fdb7
commit 966e1cdcd0

View File

@@ -18,20 +18,18 @@ private predicate scopeDefinesParameter(VariableScope scope, string name, Locati
exists(Identifier var |
name = var.getValue() and
location = var.getLocation() and
var in [
scope
.(BlockScope)
.getScopeElement()
.getAFieldOrChild()
.(BlockParameters)
.getAFieldOrChild+(),
scope
.(MethodScope)
.getScopeElement()
.getAFieldOrChild()
.(MethodParameters)
.getAFieldOrChild+()
]
var in [scope
.(BlockScope)
.getScopeElement()
.getAFieldOrChild()
.(BlockParameters)
.getAFieldOrChild+(),
scope
.(MethodScope)
.getScopeElement()
.getAFieldOrChild()
.(MethodParameters)
.getAFieldOrChild+()]
)
}