REPL

data class REPL(val initialCommands: Map<String, List<String>>? = null, val arguments: String? = null)
"repl": {
"initialCommands": {
"Adventure": [
"import o1.adventure._"
]
},
"arguments": "-new-syntax -feature -deprecation -explain-types"
}

Constructors

Link copied to clipboard
constructor(initialCommands: Map<String, List<String>>? = null, arguments: String? = null)

Properties

Link copied to clipboard
val arguments: String? = null

Arguments for the Scala compiler of the REPL.

Link copied to clipboard

A map from a module name to an array of commands that get run when opening the REPL for the given module.