JS: Autoformat

This commit is contained in:
Asger Feldthaus
2021-03-23 11:26:29 +00:00
parent 54a91c73b0
commit 98143b071d
2 changed files with 6 additions and 3 deletions

View File

@@ -11,6 +11,8 @@
import javascript
from DataFlow::Node invoke, Function f, string kind
where invoke.(DataFlow::InvokeNode).getACallee() = f and kind = "Call" or
invoke.(DataFlow::PropRef).getAnAccessorCallee().getFunction() = f and kind = "Accessor call"
where
invoke.(DataFlow::InvokeNode).getACallee() = f and kind = "Call"
or
invoke.(DataFlow::PropRef).getAnAccessorCallee().getFunction() = f and kind = "Accessor call"
select invoke, kind + " to $@", f, f.describe()