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. 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. 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[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def defaultHighlight(buffer: Vector[Char], comment: Attrs, type: Attrs, literal: Attrs, keyword: Attrs, notImplemented: 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: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[java.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[_]
    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  15. def highlightIndices[T](buffer: Vector[Char], ruleColors: PartialFunction[String, T], endColor: T): Seq[(Int, T)]
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. def isObjDef(code: String): Boolean
    Definition Classes
    Parsers → Parser
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  21. final def parseImportHooks(source: CodeSource, stmts: Seq[String]): (Seq[String], Seq[ImportTree])
    Definition Classes
    Parser
  22. def parseImportHooksWithIndices(source: CodeSource, stmts: Seq[(Int, String)]): (Seq[String], Seq[ImportTree])
    Definition Classes
    Parsers → Parser
  23. def scriptBlocksWithStartIndices(rawCode: String, fileName: String): Either[ScriptSplittingError, Seq[ScriptBlock]]
    Definition Classes
    Parsers → Parser
  24. 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
  25. 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
  26. def splitScript(code: String): Parsed[Seq[(String, Seq[(Int, String)])]]
  27. def splitScriptWithStart(rawCode: String, fileName: String): Either[Failure, IndexedSeq[(Int, String, Seq[(Int, String)])]]
  28. def splitScriptWithStart(code: String): Parsed[Seq[(Int, (String, Seq[(Int, String)]))]]
  29. def stringSymWrap(s: String): String
  30. def stringWrap(s: String): String
  31. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  32. def toString(): String
    Definition Classes
    AnyRef → Any
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Parser

Inherited from AnyRef

Inherited from Any

Ungrouped