Packages

  • package root
    Definition Classes
    root
  • package parsley
    Definition Classes
    root
  • package token

    This package provides a wealth of functionality for performing common lexing tasks.

    This package provides a wealth of functionality for performing common lexing tasks.

    It is organised as follows:

    • the main parsing functionality is accessed via Lexer, which provides implementations for the combinators found in the sub-packages given a LexicalDesc.
    • the descriptions sub-package is how a lexical structure can be described, providing the configuration that alters the behaviour of the parsers produced by the Lexer.
    • the other sub-packages contain the high-level interfaces that the Lexer exposes, which can be used to pass whitespace-aware and non-whitespace-aware combinators around in a uniform way.
    • the predicate module contains functionality to help define boolean predicates on characters or unicode codepoints.
    Definition Classes
    parsley
  • package errors
    Definition Classes
    token
  • ErrorConfig

class ErrorConfig extends AnyRef

TODO:

Source
ErrorConfig.scala
Since

4.1.0

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

Instance Constructors

  1. new ErrorConfig()

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 clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. def doubleName: String
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def explainBreakChar: Option[String]
  10. def explainCharNonAscii: Option[(Int) => String]
  11. def explainCharNonBasicMultilingualPlane: Option[(Int) => String]
  12. def explainCharNonLatin1: Option[(Int) => String]
  13. def explainEscapeInvalid: Option[String]
  14. def explainEscapeNumericPostPrefix(prefix: Char, radix: Int): Option[String]
  15. def explainRealNoDoubleDroppedZero: String
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  17. def floatName: String
  18. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. def labelCharAscii: Option[String]
  22. def labelCharAsciiEnd: Option[String]
  23. def labelCharBasicMultilingualPlane: Option[String]
  24. def labelCharBasicMultilingualPlaneEnd: Option[String]
  25. def labelCharLatin1: Option[String]
  26. def labelCharLatin1End: Option[String]
  27. def labelCharUtf16: Option[String]
  28. def labelCharUtf16End: Option[String]
  29. def labelEscapeEnd: Option[String]
  30. def labelEscapeNumeric(radix: Int): Option[String]
  31. def labelEscapeNumericEnd(radix: Int): Option[String]
  32. def labelEscapeSequence: Option[String]
  33. def labelGraphicCharacter: Option[String]
  34. def labelIntegerBinaryEnd: Option[String]
  35. def labelIntegerDecimalEnd: Option[String]
  36. def labelIntegerHexadecimalEnd: Option[String]
  37. def labelIntegerNumberEnd: Option[String]
  38. def labelIntegerOctalEnd: Option[String]
  39. def labelIntegerSignedBinary(bits: Int): Option[String]
  40. def labelIntegerSignedBinary: Option[String]
  41. def labelIntegerSignedDecimal(bits: Int): Option[String]
  42. def labelIntegerSignedDecimal: Option[String]
  43. def labelIntegerSignedHexadecimal(bits: Int): Option[String]
  44. def labelIntegerSignedHexadecimal: Option[String]
  45. def labelIntegerSignedNumber(bits: Int): Option[String]
  46. def labelIntegerSignedNumber: Option[String]
  47. def labelIntegerSignedOctal(bits: Int): Option[String]
  48. def labelIntegerSignedOctal: Option[String]
  49. def labelIntegerUnsignedBinary(bits: Int): Option[String]
  50. def labelIntegerUnsignedBinary: Option[String]
  51. def labelIntegerUnsignedDecimal(bits: Int): Option[String]
  52. def labelIntegerUnsignedDecimal: Option[String]
  53. def labelIntegerUnsignedHexadecimal(bits: Int): Option[String]
  54. def labelIntegerUnsignedHexadecimal: Option[String]
  55. def labelIntegerUnsignedNumber(bits: Int): Option[String]
  56. def labelIntegerUnsignedNumber: Option[String]
  57. def labelIntegerUnsignedOctal(bits: Int): Option[String]
  58. def labelIntegerUnsignedOctal: Option[String]
  59. def labelNameIdentifier: String
  60. def labelNameOperator: String
  61. def labelSpaceEndOfLineComment: Option[String]
  62. def labelSpaceEndOfMultiComment: Option[String]
  63. def labelStringAscii(multi: Boolean, raw: Boolean): Option[String]
  64. def labelStringAsciiEnd(multi: Boolean, raw: Boolean): Option[String]
  65. def labelStringCharacter: Option[String]
  66. def labelStringEscapeEmpty: Option[String]
  67. def labelStringEscapeGap: Option[String]
  68. def labelStringEscapeGapEnd: Option[String]
  69. def labelStringLatin1(multi: Boolean, raw: Boolean): Option[String]
  70. def labelStringLatin1End(multi: Boolean, raw: Boolean): Option[String]
  71. def labelStringUtf16(multi: Boolean, raw: Boolean): Option[String]
  72. def labelStringUtf16End(multi: Boolean, raw: Boolean): Option[String]
  73. def labelSymbolClosingAngle: Option[String]
  74. def labelSymbolClosingBrace: Option[String]
  75. def labelSymbolClosingParen: Option[String]
  76. def labelSymbolClosingSquare: Option[String]
  77. def labelSymbolColon: Option[String]
  78. def labelSymbolComma: Option[String]
  79. def labelSymbolDot: Option[String]
  80. def labelSymbolEndOfKeyword(symbol: String): String
  81. def labelSymbolEndOfOperator(symbol: String): String
  82. def labelSymbolKeyword(symbol: String): Option[String]
  83. def labelSymbolOpenAngle: Option[String]
  84. def labelSymbolOpenBrace: Option[String]
  85. def labelSymbolOpenParen: Option[String]
  86. def labelSymbolOpenSquare: Option[String]
  87. def labelSymbolOperator(symbol: String): Option[String]
  88. def labelSymbolSemi: Option[String]
  89. def messageEscapeCharNumericSequenceIllegal(escapeSequence: String): Seq[String]
  90. def messageEscapeCharNumericSequenceTooBig(escapeSequence: String, maxEscape: String): Seq[String]
  91. def messageEscapeCharRequiresExactDigits(radix: Int, got: Int, needed: Seq[Int]): Seq[String]
  92. def messageIntTooLarge(n: BigInt, max: BigInt, nativeRadix: Int): Seq[String]
  93. def messageIntTooSmall(n: BigInt, min: BigInt, nativeRadix: Int): Seq[String]
  94. def messageRealNotExact(n: BigDecimal, name: String): Seq[String]
  95. def messageRealTooLarge(n: BigDecimal, name: String): Seq[String]
  96. def messageRealTooSmall(n: BigDecimal, name: String): Seq[String]
  97. def messageStringNonAscii(s: String): Seq[String]
  98. def messageStringNonLatin1(s: String): Seq[String]
  99. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  100. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  101. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  102. def pleaseDontValidateConfig: Boolean
  103. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  104. def toString(): String
    Definition Classes
    AnyRef → Any
  105. def unexpectedCharNonAscii: Option[(Int) => String]
  106. def unexpectedCharNonBasicMultilingualPlane: Option[(Int) => String]
  107. def unexpectedCharNonLatin1: Option[(Int) => String]
  108. def unexpectedNameIllFormedIdentifier: Option[(String) => String]
  109. def unexpectedNameIllFormedOperator: Option[(String) => String]
  110. def unexpectedNameIllegalIdentifier(v: String): String
  111. def unexpectedNameIllegalOperator(v: String): String
  112. def verifiedCharBadCharsUsedInLiteral: Map[Int, String]
  113. def verifiedStringBadCharsUsedInLiteral: Map[Int, String]
  114. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  115. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  116. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped