TestMethod
fileprivate enum TestMethod : String
The name of a method implementing the logic of a test runner.
-
Compiles and runs the program.
Declaration
Swift
case compileAndRun -
Compiles and runs the program with optimizations.
Declaration
Swift
case compileAndRunOptimized -
Compiles the program down to LLVM IR.
Declaration
Swift
case compileToLLVM -
Compiles the program down to Hylo IR.
Declaration
Swift
case lowerToFinishedIR -
Parses the program.
Declaration
Swift
case parse -
Type checks the program.
Declaration
Swift
case typeCheck
View on GitHub