object AST
Script Abstract Syntax Tree
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- AST
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- case class AppExpr (name: String, params: Seq[Expression]) extends Expression with Product with Serializable
- case class Assignment (varName: String, expr: Expression) extends Product with Serializable
- case class BinaryOpExpr (e1: Expression, op: String, e2: Expression) extends Expression with Product with Serializable
- case class BoolLiteral (b: Boolean) extends Expression with Product with Serializable
- case class BoolOpExpr (e1: Expression, op: String, e2: Expression) extends Expression with Product with Serializable
- sealed trait Expression extends AnyRef
- case class ExternalFun (name: String, params: Seq[FunParam], typeName: TypeDecl) extends Product with Serializable
- case class FunParam (name: String, typeName: TypeDecl) extends Product with Serializable
- case class FunType (paramTypes: Seq[String], outputType: String) extends TypeDecl with Product with Serializable
- case class FunctionBody (assignments: Seq[Assignment], expr: Expression) extends Product with Serializable
- case class FunctionDef (name: String, params: Seq[FunParam], typeName: TypeDecl, body: FunctionBody) extends Product with Serializable
- case class IfExpr (ifExpr: Expression, thenExpr: Expression, elseExpr: Expression) extends Expression with Product with Serializable
- type MathOp = String
- case class MinusOpExpr (expr: Expression) extends Expression with Product with Serializable
- case class Module (externalFun: Seq[ExternalFun], funDecl: Seq[FunctionDef]) extends Product with Serializable
- case class NegOpExpr (expr: Expression) extends Expression with Product with Serializable
- case class NumberLiteral (v: Float) extends Expression with Product with Serializable
- case class RelationExpr (e1: Expression, op: String, e2: Expression) extends Expression with Product with Serializable
- case class StringLiteral (text: String) extends Expression with Product with Serializable
- sealed trait TypeDecl extends AnyRef
- case class ValueType (name: String) extends TypeDecl with Product with Serializable
- case class VariableExpr (name: String) extends Expression with Product with Serializable
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def mergeModules(m1: Module, m2: Module): Module
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- def printAssign(assign: Assignment): String
- def printExpr(expr: Expression): String
- def printExternalFun(f: ExternalFun): String
- def printFunBody(body: FunctionBody): String
- def printFunDef(funDef: FunctionDef): String
- def printModule(m: Module): String
- def printParam(param: FunParam): String
- def printTypeDecl(t: TypeDecl): String
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )