Class CompilationResult
java.lang.Object
org.ek9lang.cli.CompilationResult
Holds mutable compilation state that can be updated throughout
the execution chain. Allows nested E executions to report
compilation failures back to the top-level caller.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription(package private) boolean(package private) booleanCheck if code coverage was below the required threshold.(package private) void(package private) voidMark that code coverage is below the required threshold.
-
Constructor Details
-
CompilationResult
CompilationResult()
-
-
Method Details
-
markCompilationFailed
void markCompilationFailed() -
hasCompilationFailed
boolean hasCompilationFailed() -
markCoverageInsufficient
void markCoverageInsufficient()Mark that code coverage is below the required threshold. -
hasCoverageInsufficient
boolean hasCoverageInsufficient()Check if code coverage was below the required threshold.
-