Files
codeql/javascript/ql/test/library-tests/ModuleImportNodes/ModuleImportNode_getPath.qll
Max Schaefer 5a242d4849 JavaScript: Consolidate ModuleImportNode tests.
Note that `CustomImport.ql` is still separate since it customises the standard library and would hence influennce other tests.
2019-03-05 08:14:47 +00:00

6 lines
131 B
Plaintext

import javascript
query predicate test_ModuleImportNode_getPath(DataFlow::ModuleImportNode m, string res) {
res = m.getPath()
}