ModuleBuildProgress

data class ModuleBuildProgress(    val filePosition: Long,     val fileSize: Long,     val currentLineNumber: Int)

Contains the build progress information for the compilation of a ModuleName that is being compiled.

Author

Richard Arriaga

Constructors

Link copied to clipboard
fun ModuleBuildProgress(    filePosition: Long,     fileSize: Long,     currentLineNumber: Int)

Properties

Link copied to clipboard
val currentLineNumber: Int

Line number it is compiling at.

Link copied to clipboard
val filePosition: Long

Position inside the file it has compiled up to.

Link copied to clipboard
val fileSize: Long

The total size of the file.

Link copied to clipboard
val percentComplete: Long

The percent of completed compilation truncating the decimal.

Link copied to clipboard
val percentCompleteString: String

The percentComplete as a displayable String.