EvaluatedSnippetMetadata

This class contains the changes to the compiler environment that has happened as a result of evaluating a single notebook cell.

This commonly happens due to adding libraries through the %use magics command.

Constructors

Link copied to clipboard
constructor(newClasspath: Classpath = emptyList(), newSources: Classpath = emptyList(), internalMetadata: InternalMetadata = InternalMetadataImpl(), evaluatedVariablesState: Map<String, String?> = mutableMapOf())

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

A reference to a serialized version of a cell (as text) as well as the compiled snippet class.

Link copied to clipboard
Link copied to clipboard
open override val newImports: List<String>

Any new default imports created as part of evaluating the cell. These will be used automatically for all following cells.

Link copied to clipboard