зеркало из https://github.com/github/codeql.git
JS: autoformat
This commit is contained in:
Родитель
6816f33a3d
Коммит
45a5d0ee3a
|
@ -21,10 +21,14 @@ module LodashUnderscore {
|
|||
string name;
|
||||
|
||||
DefaultMember() {
|
||||
this = DataFlow::moduleMember("underscore", name) or
|
||||
this = DataFlow::moduleMember("lodash", name) or
|
||||
this = DataFlow::moduleImport("lodash/" + name) or
|
||||
this = DataFlow::moduleImport("lodash." + name.toLowerCase()) and isLodashMember(name) or
|
||||
this = DataFlow::moduleMember("underscore", name)
|
||||
or
|
||||
this = DataFlow::moduleMember("lodash", name)
|
||||
or
|
||||
this = DataFlow::moduleImport("lodash/" + name)
|
||||
or
|
||||
this = DataFlow::moduleImport("lodash." + name.toLowerCase()) and isLodashMember(name)
|
||||
or
|
||||
this = DataFlow::globalVarRef("_").getAPropertyRead(name)
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче