object Ast
A python abstract syntax tree
Basically transcribed from https://docs.python.org/2/library/ast.html
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Ast
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- case class alias(name: identifier, asname: Option[identifier]) extends Product with Serializable
- case class arguments(args: Seq[expr], vararg: Option[identifier], kwarg: Option[identifier], defaults: Seq[expr]) extends Product with Serializable
- case class attributes(lineno: Int, col_offset: Int) extends Product with Serializable
- type bool = Boolean
- sealed trait boolop extends AnyRef
- sealed trait cmpop extends AnyRef
- case class comprehension(target: expr, iter: expr, ifs: Seq[expr]) extends Product with Serializable
- sealed trait excepthandler extends AnyRef
- sealed trait expr extends AnyRef
- sealed trait expr_context extends AnyRef
- case class identifier(name: String) extends Product with Serializable
- type int = Int
- case class keyword(arg: identifier, value: expr) extends Product with Serializable
- sealed trait mod extends AnyRef
- type object = Double
- sealed trait operator extends AnyRef
- sealed trait slice extends AnyRef
- sealed trait stmt extends AnyRef
- type string = String
- sealed trait unaryop extends AnyRef
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(classOf[java.lang.CloneNotSupportedException]) @native()
- 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(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- object boolop
- object cmpop
- object excepthandler
- object expr
- object expr_context
- object mod
- object operator extends Product with Serializable
- object slice
- object stmt
- object unaryop