codeql/javascript/ql/lib/IDEContextual.qll

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 строки
386 B
Plaintext
Исходник Обычный вид История

2020-11-10 17:14:27 +03:00
/**
* Provides shared predicates related to contextual queries in the code viewer.
*/
import semmle.files.FileSystem
private import codeql.util.FileSystem
/**
* Returns the `File` matching the given source file name as encoded by the VS
* Code extension.
*/
cached
File getFileBySourceArchiveName(string name) {
result = IdeContextual<File>::getFileBySourceArchiveName(name)
}