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.

Inheritors

Constructors

Link copied to clipboard
constructor(issues: List<Issue>, data: D?, code: String? = null)

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int

Properties

Link copied to clipboard
val code: String? = null
Link copied to clipboard
Link copied to clipboard
val data: D?
Link copied to clipboard