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 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
- 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[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[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
- @throws( ... ) @native()
- object Break extends stmt with Product with Serializable
- object Continue extends stmt with Product with Serializable
- object Pass extends stmt with Product with Serializable