object
stmt
Type Members
-
case class
Assert(test: expr, msg: Option[expr]) extends stmt with Product with Serializable
-
case class
Assign(targets: Seq[expr], value: expr) extends stmt with Product with Serializable
-
case class
AugAssign(target: expr, op: operator, value: expr) extends stmt with Product with Serializable
-
case class
ClassDef(name: identifier, bases: Seq[expr], body: Seq[stmt], decorator_list: Seq[expr]) extends stmt with Product with Serializable
-
case class
Delete(targets: Seq[expr]) extends stmt with Product with Serializable
-
case class
Exec(body: expr, globals: Option[expr], locals: Option[expr]) 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: Seq[stmt], orelse: Seq[stmt]) extends stmt with Product with Serializable
-
case class
FunctionDef(name: identifier, args: arguments, body: Seq[stmt], decorator_list: Seq[expr]) extends stmt with Product with Serializable
-
case class
Global(names: Seq[identifier]) extends stmt with Product with Serializable
-
case class
If(test: expr, body: Seq[stmt], orelse: Seq[stmt]) extends stmt with Product with Serializable
-
case class
Import(names: Seq[alias]) extends stmt with Product with Serializable
-
case class
ImportFrom(module: Option[identifier], names: Seq[alias], level: Option[int]) extends stmt with Product with Serializable
-
case class
Print(dest: Option[expr], values: Seq[expr], nl: bool) extends stmt with Product with Serializable
-
case class
Raise(type: Option[expr], inst: Option[expr], tback: Option[expr]) extends stmt with Product with Serializable
-
case class
Return(value: Option[expr]) extends stmt with Product with Serializable
-
case class
TryExcept(body: Seq[stmt], handlers: Seq[excepthandler], orelse: Seq[stmt]) extends stmt with Product with Serializable
-
case class
TryFinally(body: Seq[stmt], finalbody: Seq[stmt]) extends stmt with Product with Serializable
-
case class
While(test: expr, body: Seq[stmt], orelse: Seq[stmt]) extends stmt with Product with Serializable
-
case class
With(context_expr: expr, optional_vars: Option[expr], body: Seq[stmt]) extends stmt with Product with Serializable
-
case class
attributes(lineno: Int, col_offset: Int) extends Product with Serializable
Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
object
Break extends stmt with Product with Serializable
-
object
Continue extends stmt with Product with Serializable
-
object
Pass extends stmt with Product with Serializable
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
final
def
ne(arg0: AnyRef): 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
Inherited from AnyRef
Inherited from Any