mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
6 lines
187 B
Plaintext
6 lines
187 B
Plaintext
import semmle.javascript.ES2015Modules
|
|
|
|
query predicate test_ExportSpecifiers(ExportSpecifier es, Identifier res0, Identifier res1) {
|
|
res0 = es.getLocal() and res1 = es.getExported()
|
|
}
|