class
ReadEvalPrint extends AnyRef
Instance Constructors
-
new
ReadEvalPrint()
-
new
ReadEvalPrint(lineId: Int)
Value Members
-
final
def
!=(arg0: AnyRef): Boolean
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: AnyRef): Boolean
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
call(name: String, args: Any*): AnyRef
-
def
callOpt(name: String, args: Any*): Option[AnyRef]
-
def
clone(): AnyRef
-
def
compile(source: String): Boolean
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
lazy val
evalClass: java.lang.Class[_]
-
val
evalName: String
-
def
evalPath: String
-
lazy val
evalValue: Option[AnyRef]
-
def
finalize(): Unit
-
final
def
getClass(): java.lang.Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
def
lineAfterTyper[T](op: ⇒ T): T
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
def
packageDecl: String
-
val
packageName: String
-
def
packaged(code: String): String
-
def
pathTo(name: String): String
-
val
printName: String
-
def
printPath: String
-
val
readName: String
-
def
readPath: String
-
def
resolvePathToSymbol(accessPath: String): Symbol
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
val
valueMethod: String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
Inherited from AnyRef
Inherited from Any
Here is where we:
1) Read some source code, and put it in the "read" object. 2) Evaluate the read object, and put the result in the "eval" object. 3) Create a String for human consumption, and put it in the "print" object.
Read! Eval! Print! Some of that not yet centralized here.