Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/src/languages.ts
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
43 lines (36 sloc)
1.05 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// All the languages supported by CodeQL | |
export enum Language { | |
csharp = "csharp", | |
cpp = "cpp", | |
go = "go", | |
java = "java", | |
javascript = "javascript", | |
python = "python", | |
} | |
// Additional names for languages | |
const LANGUAGE_ALIASES: { [lang: string]: Language } = { | |
c: Language.cpp, | |
"c++": Language.cpp, | |
"c#": Language.csharp, | |
typescript: Language.javascript, | |
}; | |
// Translate from user input or GitHub's API names for languages to CodeQL's names for languages | |
export function parseLanguage(language: string): Language | undefined { | |
// Normalise to lower case | |
language = language.toLowerCase(); | |
// See if it's an exact match | |
if (language in Language) { | |
return language as Language; | |
} | |
// Check language aliases | |
if (language in LANGUAGE_ALIASES) { | |
return LANGUAGE_ALIASES[language]; | |
} | |
return undefined; | |
} | |
export function isTracedLanguage(language: Language): boolean { | |
return ["cpp", "java", "csharp"].includes(language); | |
} | |
export function isScannedLanguage(language: Language): boolean { | |
return !isTracedLanguage(language); | |
} |