object Parsers extends Parser

Linear Supertypes
Parser, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Parsers
  2. Parser
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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. def Splitter[_](implicit arg0: P[Any]): P[Seq[(Int, String)]]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. def defaultHighlight(buffer: Vector[Char], comment: Attrs, type: Attrs, literal: Attrs, keyword: Attrs, reset: Attrs): Vector[Char]
    Definition Classes
    Parsers → Parser
  8. def defaultHighlightIndices(buffer: Vector[Char], comment: Attrs, type: Attrs, literal: Attrs, keyword: Attrs, reset: Attrs): Seq[(Int, Attrs)]
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. def formatFastparseError(fileName: String, rawCode: String, f: Failure): String
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def isObjDef(code: String): Boolean
    Definition Classes
    Parsers → Parser
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def parseImportHooks(source: CodeSource, stmts: Seq[String]): (Seq[String], Seq[ImportTree])
    Definition Classes
    Parser
  21. def parseImportHooksWithIndices(source: CodeSource, stmts: Seq[(Int, String)]): (Seq[String], Seq[ImportTree])
    Definition Classes
    Parsers → Parser
  22. def scriptBlocksWithStartIndices(rawCode: String, fileName: String): Either[ScriptSplittingError, Seq[ScriptBlock]]
    Definition Classes
    Parsers → Parser
  23. def split(code: String, ignoreIncomplete: Boolean, fileName: String): Option[Either[String, Seq[String]]]

    Attempts to break a code blob into multiple statements.

    Attempts to break a code blob into multiple statements. Returns None if it thinks the code blob is "incomplete" and requires more input

    Definition Classes
    Parsers → Parser
  24. def splitScript(rawCode: String, fileName: String): Either[String, IndexedSeq[(String, Seq[String])]]

    Splits up a script file into its constituent blocks, each of which is a tuple of (leading-whitespace, statements).

    Splits up a script file into its constituent blocks, each of which is a tuple of (leading-whitespace, statements). Leading whitespace is returned separately so we can later manipulate the statements e.g. by adding val res2 = without the whitespace getting in the way

    Definition Classes
    Parsers → Parser
  25. def splitScript(code: String): Parsed[Seq[(String, Seq[(Int, String)])]]
  26. def splitScriptWithStart(rawCode: String, fileName: String): Either[Failure, IndexedSeq[(Int, String, Seq[(Int, String)])]]
  27. def splitScriptWithStart(code: String): Parsed[Seq[(Int, (String, Seq[(Int, String)]))]]
  28. def stringSymWrap(s: String): String
  29. def stringWrap(s: String): String
  30. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Parser

Inherited from AnyRef

Inherited from Any

Ungrouped