replpp

package replpp

Members list

Concise view

Type members

Classlikes

case class Config(predefCode: Option[String], predefFiles: List[Path], nocolors: Boolean, verbose: Boolean, dependencies: Seq[String], prompt: Option[String], greeting: String, onExitCode: Option[String], scriptFile: Option[Path], command: Option[String], params: Map[String, String], server: Boolean, serverHost: String, serverPort: Int, serverAuthUsername: String, serverAuthPassword: String)

Attributes

Companion:
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
object Config

Attributes

Companion:
class
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
Config.type

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
object PPrinter

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
class ReplDriver(args: Array[String], out: PrintStream, onExitCode: Option[String], greeting: Option[String], prompt: String, maxPrintElements: Int, classLoader: Option[ClassLoader]) extends ReplDriver

Attributes

Graph
Supertypes
class ReplDriver
class Driver
class Object
trait Matchable
class Any

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Value members

Concrete methods

def allPredefCode(config: Config): String
def compilerArgs(config: Config, predefCode: String): Array[String]
def predefCodeByFile(config: Config): Seq[(Path, String)]
def resolveFile(base: Path, pathStr: String): Path

resolve absolute or relative paths to an absolute path

resolve absolute or relative paths to an absolute path

  • if given pathStr is an absolute path, just take that
  • if it's a relative path, use given base path to resolve it to an absolute path

Attributes