o

pythonparse

Lexical

object Lexical

Python's lexical grammar; how basic tokens get parsed. This stuff is sensitive to whitespace, which can only appear where it's explicitly stated to be part of the grammar.

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

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Lexical
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val bindigit: fastparse.all.P0
  6. val bininteger: fastparse.all.P[BigInt]
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. val comment: fastparse.all.Parser[Unit]
  9. val decimalinteger: fastparse.all.P[BigInt]
  10. val digit: fastparse.all.Parser[Unit]
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. val escapeseq: fastparse.all.P0
  14. val exponent: fastparse.all.P0
  15. val exponentfloat: fastparse.all.P[BigDecimal]
  16. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. val floatnumber: fastparse.all.P[BigDecimal]
  18. val fraction: fastparse.all.P0
  19. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  21. val hexdigit: fastparse.all.P0
  22. val hexinteger: fastparse.all.P[BigInt]
  23. val identifier: fastparse.all.P[identifier]
  24. val imagnumber: fastparse.all.Parser[BigDecimal]
  25. val integer: fastparse.all.P[BigInt]
  26. val intpart: fastparse.all.P[BigDecimal]
  27. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  28. val keywordList: Set[String]
  29. def kw(s: String): Parser[Unit, Char, String]
  30. val letter: fastparse.all.Parser[Unit]
  31. val longinteger: fastparse.all.P[BigInt]
  32. val longstring: fastparse.all.P[String]
  33. def longstring0(delimiter: String): fastparse.all.Parser[String]
  34. def longstringchar(quote: String): fastparse.all.P0
  35. def longstringitem(quote: String): fastparse.all.P0
  36. val lowercase: fastparse.all.Parser[Unit]
  37. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  38. def negatable[T](p: fastparse.all.P[T])(implicit ev: Numeric[T]): Parser[T, Char, String]
  39. val nonewlinewscomment: fastparse.all.Parser[Unit]
  40. val nonzerodigit: fastparse.all.P0
  41. final def notify(): Unit
    Definition Classes
    AnyRef
  42. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  43. val octdigit: fastparse.all.P0
  44. val octinteger: fastparse.all.P[BigInt]
  45. val pointfloat: fastparse.all.P[BigDecimal]
  46. val shortstring: fastparse.all.P[String]
  47. def shortstring0(delimiter: String): fastparse.all.Parser[String]
  48. def shortstringchar(quote: String): fastparse.all.P0
  49. def shortstringitem(quote: String): fastparse.all.P0
  50. val stringliteral: fastparse.all.P[String]
  51. val stringprefix: fastparse.all.P0
  52. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  53. def toString(): String
    Definition Classes
    AnyRef → Any
  54. val uppercase: fastparse.all.Parser[Unit]
  55. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  56. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  57. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  58. val wscomment: fastparse.all.Parser[Unit]

Inherited from AnyRef

Inherited from Any

Ungrouped