Object

pythonparse

Ast

Related Doc: package pythonparse

Permalink

object Ast

A python abstract syntax tree

Basically transcribed from https://docs.python.org/2/library/ast.html

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Ast
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. case class alias(name: identifier, asname: Option[identifier]) extends Product with Serializable

    Permalink
  2. case class arguments(args: Seq[expr], vararg: Option[identifier], kwarg: Option[identifier], defaults: Seq[expr]) extends Product with Serializable

    Permalink
  3. case class attributes(lineno: Int, col_offset: Int) extends Product with Serializable

    Permalink
  4. type bool = Boolean

    Permalink
  5. sealed trait boolop extends AnyRef

    Permalink
  6. sealed trait cmpop extends AnyRef

    Permalink
  7. case class comprehension(target: expr, iter: expr, ifs: Seq[expr]) extends Product with Serializable

    Permalink
  8. sealed trait excepthandler extends AnyRef

    Permalink
  9. sealed trait expr extends AnyRef

    Permalink
  10. sealed trait expr_context extends AnyRef

    Permalink
  11. case class identifier(name: String) extends Product with Serializable

    Permalink
  12. type int = Int

    Permalink
  13. case class keyword(arg: identifier, value: expr) extends Product with Serializable

    Permalink
  14. sealed trait mod extends AnyRef

    Permalink
  15. type object = Double

    Permalink
  16. sealed trait operator extends AnyRef

    Permalink
  17. sealed trait slice extends AnyRef

    Permalink
  18. sealed trait stmt extends AnyRef

    Permalink
  19. type string = String

    Permalink
  20. sealed trait unaryop extends AnyRef

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. object boolop

    Permalink
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. object cmpop

    Permalink
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. object excepthandler

    Permalink
  11. object expr

    Permalink
  12. object expr_context

    Permalink
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. object mod

    Permalink
  18. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. object operator extends Product with Serializable

    Permalink
  22. object slice

    Permalink
  23. object stmt

    Permalink
  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  25. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  26. object unaryop

    Permalink
  27. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped