Packages

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

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped