LexingResult

class LexingResult<T : KolasuToken>(issues: List<Issue>, val tokens: List<T>, code: String? = null, val time: Long? = null) : CodeProcessingResult<List<T>>

The result of lexing (tokenizing) a stream.

Constructors

Link copied to clipboard
constructor(issues: List<Issue>, tokens: List<T>, code: String? = null, time: Long? = 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?
Link copied to clipboard
Link copied to clipboard
val data: List<T>?
Link copied to clipboard
Link copied to clipboard
val time: Long? = null
Link copied to clipboard
val tokens: List<T>