pythonparse

Expressions

object Expressions

Python's expression grammar. This is stuff that can be used within a larger expression. Everything here ignores whitespace and does not care about indentation

Manually transcribed from https://docs.python.org/2/reference/grammar.html

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Expressions
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. val Add: Parser[Ast.operator.Add.type]

  7. val BitAnd: Parser[Ast.operator.BitAnd.type]

  8. val BitOr: Parser[Ast.operator.BitOr.type]

  9. val BitXor: Parser[Ast.operator.BitXor.type]

  10. def Chain(p: fastparse.noApi.P[expr], op: fastparse.noApi.P[operator]): Parser[expr]

  11. val Div: Parser[Ast.operator.Div.type]

  12. val Eq: Parser[Ast.cmpop.Eq.type]

  13. val FloorDiv: Parser[Ast.operator.FloorDiv.type]

  14. val Gt: Parser[Ast.cmpop.Gt.type]

  15. val GtE: Parser[Ast.cmpop.GtE.type]

  16. val In: Parser[Ast.cmpop.In.type]

  17. val Is: Parser[Ast.cmpop.Is.type]

  18. val IsNot: Parser[Ast.cmpop.IsNot.type]

  19. val LShift: Parser[Ast.operator.LShift.type]

  20. val Lt: Parser[Ast.cmpop.Lt.type]

  21. val LtE: Parser[Ast.cmpop.LtE.type]

  22. val Mod: Parser[Ast.operator.Mod.type]

  23. val Mult: Parser[Ast.operator.Mult.type]

  24. val NAME: fastparse.noApi.P[identifier]

  25. val NUMBER: fastparse.noApi.P[Num]

  26. val NotEq: Parser[Ast.cmpop.NotEq.type]

  27. val NotIn: Parser[Ast.cmpop.NotIn.type]

  28. val Pow: Parser[Ast.operator.Pow.type]

  29. val RShift: Parser[Ast.operator.RShift.type]

  30. val STRING: fastparse.noApi.P[string]

  31. val Sub: Parser[Ast.operator.Sub.type]

  32. val and_expr: fastparse.noApi.P[expr]

  33. val and_test: Parser[expr]

  34. val arglist: fastparse.noApi.Parser[(Seq[expr], (Seq[keyword], Option[expr], Option[expr]))]

  35. val arith_expr: fastparse.noApi.P[expr]

  36. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  37. val atom: fastparse.noApi.P[expr]

  38. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. val comp_for: fastparse.noApi.P[comprehension]

  40. val comp_if: fastparse.noApi.P[expr]

  41. val comp_op: fastparse.noApi.Parser[Product with Serializable with cmpop]

  42. val comparison: fastparse.noApi.P[expr]

  43. val dictorsetmaker: fastparse.noApi.P[expr]

  44. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  46. val expr: fastparse.noApi.P[expr]

  47. val exprlist: fastparse.noApi.P[Seq[expr]]

  48. val factor: fastparse.noApi.P[expr]

  49. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  50. val fpdef: fastparse.noApi.P[expr]

  51. val fplist: fastparse.noApi.P[expr]

  52. val generator: Parser[GeneratorExp]

  53. final def getClass(): Class[_]

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

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

    Definition Classes
    Any
  56. val lambdef: fastparse.noApi.P[Lambda]

  57. val list: Parser[List]

  58. val list_comp: Parser[ListComp]

  59. val list_comp_contents: fastparse.noApi.Parser[(expr, Seq[comprehension])]

  60. val list_contents: fastparse.noApi.Parser[Seq[expr]]

  61. val named_argument: Parser[keyword]

  62. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  63. val not_test: fastparse.noApi.P[expr]

  64. final def notify(): Unit

    Definition Classes
    AnyRef
  65. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  66. def op[T](s: fastparse.noApi.P0, rhs: T): Parser[T]

  67. val or_test: Parser[expr]

  68. val plain_argument: Parser[expr]

  69. val power: fastparse.noApi.P[expr]

  70. val shift_expr: fastparse.noApi.P[expr]

  71. val sliceop: fastparse.noApi.Parser[Option[expr]]

  72. val subscript: fastparse.noApi.P[slice]

  73. val subscriptlist: Parser[slice]

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

    Definition Classes
    AnyRef
  75. val term: fastparse.noApi.P[expr]

  76. val test: fastparse.noApi.P[expr]

  77. val testlist: fastparse.noApi.P[Seq[expr]]

  78. val testlist1: fastparse.noApi.P[Seq[expr]]

  79. def toString(): String

    Definition Classes
    AnyRef → Any
  80. val trailer: fastparse.noApi.P[(expr) ⇒ expr]

  81. val tuple: Parser[Tuple]

  82. def tuplize(xs: Seq[expr]): expr

  83. val varargslist: fastparse.noApi.P[arguments]

  84. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  87. val xor_expr: fastparse.noApi.P[expr]

  88. val yield_expr: fastparse.noApi.P[Yield]

Inherited from AnyRef

Inherited from Any

Ungrouped