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

Inherited from Parser

Inherited from AnyRef

Inherited from Any

Ungrouped