All files / transpiler/types TLanguageStandard.ts

0% Statements 0/0
0% Branches 0/0
0% Functions 0/0
0% Lines 0/0

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11                     
/**
 * Issue #1143: Language-standard axis of a toolchain requirement.
 *
 * C and C++ values are never ordered against each other -- compare only within
 * a family, using LANGUAGE_STANDARD_FAMILY to establish which family a value
 * belongs to and LANGUAGE_STANDARD_ORDER to rank it.
 */
type TLanguageStandard = "C99" | "C11" | "C++11" | "C++14" | "C++20";
 
export default TLanguageStandard;