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
Ordering
- Alphabetic
- By Inheritance
Inherited
- Lexical
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
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 bindigit[_](implicit arg0: P[Any]): P[Unit]
- def bininteger[_](implicit arg0: P[Any]): P[BigInt]
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate() @throws(classOf[java.lang.CloneNotSupportedException])
- def comment[_](implicit arg0: P[Any]): P[Unit]
- def decimalinteger[_](implicit arg0: P[Any]): P[BigInt]
- def digit[_](implicit arg0: P[Any]): P[Unit]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def escapeseq[_](implicit arg0: P[Any]): P[Unit]
- def exponent[_](implicit arg0: P[Any]): P[Unit]
- def exponentfloat[_](implicit arg0: P[Any]): P[BigDecimal]
- def floatnumber[_](implicit arg0: P[Any]): P[BigDecimal]
- def fraction[_](implicit arg0: P[Any]): P[Unit]
- final def getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hexdigit[_](implicit arg0: P[Any]): P[Unit]
- def hexinteger[_](implicit arg0: P[Any]): P[BigInt]
- def identifier[_](implicit arg0: P[Any]): P[identifier]
- def imagnumber[_](implicit arg0: P[Any]): P[BigDecimal]
- def integer[_](implicit arg0: P[Any]): P[BigInt]
- def intpart[_](implicit arg0: P[Any]): P[BigDecimal]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val keywordList: Set[String]
- def kw[_](s: String)(implicit arg0: P[Any]): P[Unit]
- def letter[_](implicit arg0: P[Any]): P[Unit]
- def longinteger[_](implicit arg0: P[Any]): P[BigInt]
- def longstring[_](implicit arg0: P[Any]): P[String]
- def longstring0[_](delimiter: String)(implicit arg0: P[Any]): P[String]
- def longstringchar[_](quote: String)(implicit arg0: P[Any]): P[Unit]
- def longstringitem[_](quote: String)(implicit arg0: P[Any]): P[Unit]
- def lowercase[_](implicit arg0: P[Any]): P[Unit]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def negatable[T, _](p: ⇒ P[T])(implicit arg0: P[Any], ev: Numeric[T]): P[T]
- def nonewlinewscomment[_](implicit arg0: P[Any]): P[Unit]
- def nonzerodigit[_](implicit arg0: P[Any]): P[Unit]
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def octdigit[_](implicit arg0: P[Any]): P[Unit]
- def octinteger[_](implicit arg0: P[Any]): P[BigInt]
- def pointfloat[_](implicit arg0: P[Any]): P[BigDecimal]
- def shortstring[_](implicit arg0: P[Any]): P[String]
- def shortstring0[_](delimiter: String)(implicit arg0: P[Any]): P[String]
- def shortstringchar[_](quote: String)(implicit arg0: P[Any]): P[Unit]
- def shortstringitem[_](quote: String)(implicit arg0: P[Any]): P[Unit]
- def stringliteral[_](implicit arg0: P[Any]): P[String]
- def stringprefix[_](implicit arg0: P[Any]): P[Unit]
- final def synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def uppercase[_](implicit arg0: P[Any]): P[Unit]
- 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
- @native() @throws(classOf[java.lang.InterruptedException])
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def wscomment[_](implicit arg0: P[Any]): P[Unit]