Trait

sbt.internal.util.complete

ParserMain

Related Doc: package complete

Permalink

trait ParserMain extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ParserMain
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply[T](p: Parser[T])(s: String): Parser[T]

    Permalink

    Applies parser p to input s.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def charClass(f: (Char) ⇒ Boolean, label: String = "<unspecified>"): Parser[Char]

    Permalink

    Defines a Parser that parses a single character only if the predicate f returns true for that character.

    Defines a Parser that parses a single character only if the predicate f returns true for that character. If this parser fails, label is used as the failure message.

  7. def chars(legal: String): Parser[Char]

    Permalink

    Defines a Parser that parses a single character only if it is contained in legal.

  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def completions(p: Parser[_], s: String, level: Int): Completions

    Permalink

    Applies parser p to input s and returns the completions at verbosity level.

    Applies parser p to input s and returns the completions at verbosity level. The interpretation of level is up to parser definitions, but 0 is the default by convention, with increasing positive numbers corresponding to increasing verbosity. Typically no more than a few levels are defined.

  10. def derive1[T](p: Parser[T], c: Char): Parser[T]

    Permalink

    Applies parser p to a single character of input.

  11. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  13. def examples[A](a: Parser[A], completions: ExampleSource, maxNumberOfExamples: Int, removeInvalidExamples: Boolean): Parser[A]

    Permalink

    A

    the type of values that are returned by the parser.

    a

    the parser to decorate with a source of examples. All validation and parsing is delegated to this parser, only Parser.completions is modified.

    completions

    the source of examples when displaying completions to the user.

    maxNumberOfExamples

    limits the number of examples that the source of examples should return. This can prevent lengthy pauses and avoids bad interactive user experience.

    removeInvalidExamples

    indicates whether completion examples should be checked for validity (against the given parser). An exception is thrown if the example source contains no valid completion suggestions.

  14. def examples[A](a: Parser[A], completions: Set[String], check: Boolean = false): Parser[A]

    Permalink
  15. def failure(msg: ⇒ String, definitive: Boolean = false): Parser[Nothing]

    Permalink

    Defines a parser that always fails on any input with message msg.

    Defines a parser that always fails on any input with message msg. If definitive is true, any failures by later alternatives are discarded.

  16. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  18. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  19. def homParser[A](a: Parser[A], b: Parser[A]): Parser[A]

    Permalink
  20. def invalid(msgs: ⇒ Seq[String], definitive: Boolean = false): Parser[Nothing]

    Permalink

    Defines a parser that always fails on any input with messages msgs.

    Defines a parser that always fails on any input with messages msgs. If definitive is true, any failures by later alternatives are discarded.

  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. implicit def literal(s: String): Parser[String]

    Permalink

    Presents a literal String s as a Parser that only parses that exact text and provides it as the result.

  23. implicit def literal(ch: Char): Parser[Char]

    Permalink

    Presents a single Char ch as a Parser that only parses that exact character.

  24. implicit def literalRichCharParser(c: Char): RichParser[Char]

    Permalink
  25. implicit def literalRichStringParser(s: String): RichParser[String]

    Permalink
  26. def matched(t: Parser[_], seen: Vector[Char] = Vector.empty, partial: Boolean = false): Parser[String]

    Permalink
  27. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  28. def not(p: Parser[_], failMessage: String): Parser[Unit]

    Permalink
  29. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  31. def oneOf[T](p: Seq[Parser[T]]): Parser[T]

    Permalink
  32. def parse[T](str: String, parser: Parser[T]): Either[String, T]

    Permalink

    Parses input str using parser.

    Parses input str using parser. If successful, the result is provided wrapped in Right. If unsuccessful, an error message is provided in Left.

  33. implicit def range(r: NumericRange[Char]): Parser[Char]

    Permalink

    Presents a Char range as a Parser.

    Presents a Char range as a Parser. A single Char is parsed only if it is in the given range.

  34. def result[T](p: Parser[T], s: String): Either[() ⇒ (Seq[String], Int), T]

    Permalink
  35. implicit def richParser[A](a: Parser[A]): RichParser[A]

    Permalink

    Provides combinators for Parsers.

  36. def sample(str: String, parser: Parser[_], completions: Boolean = false): Unit

    Permalink

    Convenience method to use when developing a parser.

    Convenience method to use when developing a parser. parser is applied to the input str. If completions is true, the available completions for the input are displayed. Otherwise, the result of parsing is printed using the result's toString method. If parsing fails, the error message is displayed.

    See also sampleParse and sampleCompletions.

  37. def sampleCompletions(str: String, parser: Parser[_], level: Int = 1): Unit

    Permalink

    Convenience method to use when developing a parser.

    Convenience method to use when developing a parser. parser is applied to the input str and the available completions are displayed on separate lines. If parsing fails, the error message is displayed.

  38. def sampleParse(str: String, parser: Parser[_]): Unit

    Permalink

    Convenience method to use when developing a parser.

    Convenience method to use when developing a parser. parser is applied to the input str and the result of parsing is printed using the result's toString method. If parsing fails, the error message is displayed.

  39. def seq[T](p: Seq[Parser[T]]): Parser[Seq[T]]

    Permalink
  40. def seq0[T](p: Seq[Parser[T]], errors: ⇒ Seq[String]): Parser[Seq[T]]

    Permalink
  41. def stringLiteral(s: String, start: Int): Parser[String]

    Permalink
  42. def success[T](value: T): Parser[T]

    Permalink

    Defines a parser that always succeeds on empty input with the result value.

  43. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  44. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  45. def token[T](t: Parser[T], complete: TokenCompletions): Parser[T]

    Permalink
  46. def token[T](t: Parser[T], description: String): Parser[T]

    Permalink

    Establishes delegate parser t as a single token of tab completion.

    Establishes delegate parser t as a single token of tab completion. When tab completion of part of this token is requested, description is displayed for suggestions and no completions are ever performed.

  47. def token[T](t: Parser[T], hide: (Int) ⇒ Boolean): Parser[T]

    Permalink

    Establishes delegate parser t as a single token of tab completion.

    Establishes delegate parser t as a single token of tab completion. When tab completion of part of this token is requested, no completions are returned if hide returns true for the current tab completion level. Otherwise, the completions provided by the delegate t or a later derivative are appended to the prefix String already seen by this parser.

  48. def token[T](t: Parser[T]): Parser[T]

    Permalink

    Establishes delegate parser t as a single token of tab completion.

    Establishes delegate parser t as a single token of tab completion. When tab completion of part of this token is requested, the completions provided by the delegate t or a later derivative are appended to the prefix String already seen by this parser.

  49. def tokenDisplay[T](t: Parser[T], display: String): Parser[T]

    Permalink

    Establishes delegate parser t as a single token of tab completion.

    Establishes delegate parser t as a single token of tab completion. When tab completion of part of this token is requested, display is used as the printed suggestion, but the completions from the delegate parser t are used to complete if unambiguous.

  50. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  52. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  53. object ~

    Permalink

    See unapply.

Inherited from AnyRef

Inherited from Any

Ungrouped