object STMT
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- STMT
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- case class Assert(test: EXPR, msg: Option[EXPR]) extends STMT with Product with Serializable
- case class Attributes(lineno: Int, col_offset: Int) extends Product with Serializable
- case class AugAssign(target: EXPR, op: OPERATOR, value: EXPR) extends STMT with Product with Serializable
- case class Case(cond: EXPR, body: List[STMT], isDefault: Boolean = false) extends STMT with Product with Serializable
- case class Expr(value: EXPR) extends STMT with Product with Serializable
- case class For(target: EXPR, iter: EXPR, body: List[STMT], orelse: List[STMT]) extends STMT with Product with Serializable
- case class FunctionDef(name: Identifier, args: Arguments, body: List[STMT], returnType: Identifier) extends STMT with Product with Serializable
- case class If(test: EXPR, body: List[STMT], orelse: List[STMT]) extends STMT with Product with Serializable
- case class Let(target: EXPR, value: EXPR, global: Boolean = false) extends STMT with Product with Serializable
- case class Match(target: EXPR, branches: List[STMT]) extends STMT with Product with Serializable
- case class Return(value: Option[EXPR]) extends STMT with Product with Serializable
- case class UnlockIf(test: EXPR) extends STMT 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
- @native() @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
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
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
- @native() @throws( ... )
- object Halt extends STMT with Product with Serializable
- object Pass extends STMT with Product with Serializable