CodeProcessingResult
open class CodeProcessingResult<D>(val issues: List<Issue>, val data: D?, val code: String? = null) : Serializable
The result of processing a piece of source code.
Parameters
D
the type of the transformed data.
issues
a list of issues encountered while processing the code.
data
the result of the process.
code
the processed source code.