InternalEvalResult

data class InternalEvalResult(val result: FieldValue, val scriptInstance: Any)

This class wraps the low-level output of evaluating a single snippet in the Kotlin compiler.

Constructors

Link copied to clipboard
constructor(result: FieldValue, scriptInstance: Any)

Properties

Link copied to clipboard

The output of a cell, if any. If the cell had no output, FieldValue.value is Unit and name is null.

Link copied to clipboard

A reference to the instance of the snippet used for evaluation.