trait
Evaluator extends AnyRef
Abstract Value Members
-
abstract
def
evalCachedClassFiles(cachedData: Seq[ClassFiles], pkg: String, wrapper: String, dynamicClasspath: VirtualDirectory, classFilesList: Seq[String]): Res[Seq[_]]
-
abstract
def
evalMain(cls: Class[_]): Any
-
abstract
def
frames: List[Frame]
-
abstract
def
frames_=(newValue: List[Frame]): Unit
-
abstract
def
getCurrentLine: String
-
abstract
def
loadClass(wrapperName: String, classFiles: ClassFiles): Res[Class[_]]
-
abstract
def
processLine(classFiles: ClassFiles, newImports: Imports, printer: Printer, fileName: String, indexedWrapperName: Name): Res[Evaluated]
-
abstract
def
processScriptBlock(cls: Class[_], newImports: Imports, wrapperName: Name, pkgName: Seq[Name], tag: String): Res[Evaluated]
-
abstract
def
update(newImports: Imports): Unit
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
-
-
def
finalize(): Unit
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
Evaluates already-compiled Bytecode.
Deals with all the munging of
Classloader
s,Class[_]
objects, andArray[Byte]
s representing class files, and reflection necessary to take the already-compile Scala bytecode and execute it in our process.