Class/Object

com.github.kardapoltsev.astparser.parser.http

HttpLexer

Related Docs: object HttpLexer | package http

Permalink

class HttpLexer extends BaseLexer

Linear Supertypes
BaseLexer, Scanners, Parsers, AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HttpLexer
  2. BaseLexer
  3. Scanners
  4. Parsers
  5. AnyRef
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new HttpLexer()

    Permalink

Type Members

  1. type Elem = Char

    Permalink
    Definition Classes
    Scanners → Parsers
  2. case class Error extends NoSuccess with Product with Serializable

    Permalink
    Definition Classes
    Parsers
  3. case class Failure extends NoSuccess with Product with Serializable

    Permalink
    Definition Classes
    Parsers
  4. type Input = Reader[Elem]

    Permalink
    Definition Classes
    Parsers
  5. sealed abstract class NoSuccess extends ParseResult[Nothing]

    Permalink
    Definition Classes
    Parsers
  6. trait OnceParser[+T] extends Parser[T]

    Permalink
    Definition Classes
    Parsers
  7. sealed abstract class ParseResult[+T] extends AnyRef

    Permalink
    Definition Classes
    Parsers
  8. abstract class Parser[+T] extends (Input) ⇒ ParseResult[T]

    Permalink
    Definition Classes
    Parsers
  9. class Scanner extends Reader[scala.util.parsing.combinator.lexical.Scanners.Token]

    Permalink
    Definition Classes
    Scanners
  10. case class Success[+T] extends ParseResult[T] with Product with Serializable

    Permalink
    Definition Classes
    Parsers
  11. type Token = HttpLexer.Token

    Permalink
    Definition Classes
    HttpLexer → Scanners
  12. case class ~[+a, +b] extends Product with Serializable

    Permalink
    Definition Classes
    Parsers

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from HttpLexer to any2stringadd[HttpLexer] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (HttpLexer, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from HttpLexer to ArrowAssoc[HttpLexer] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. object NoSuccess

    Permalink
    Definition Classes
    Parsers
  7. def OnceParser[T](f: (Input) ⇒ ParseResult[T]): Parser[T] with OnceParser[T]

    Permalink
    Definition Classes
    Parsers
  8. def Parser[T](f: (Input) ⇒ ParseResult[T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  9. def accept[U](expected: String, f: PartialFunction[Elem, U]): Parser[U]

    Permalink
    Definition Classes
    Parsers
  10. def accept[ES](es: ES)(implicit f: (ES) ⇒ List[Elem]): Parser[List[Elem]]

    Permalink
    Definition Classes
    Parsers
  11. implicit def accept(e: Elem): Parser[Elem]

    Permalink
    Definition Classes
    Parsers
  12. def acceptIf(p: (Elem) ⇒ Boolean)(err: (Elem) ⇒ String): Parser[Elem]

    Permalink
    Definition Classes
    Parsers
  13. def acceptMatch[U](expected: String, f: PartialFunction[Elem, U]): Parser[U]

    Permalink
    Definition Classes
    Parsers
  14. def acceptSeq[ES](es: ES)(implicit f: (ES) ⇒ Iterable[Elem]): Parser[List[Elem]]

    Permalink
    Definition Classes
    Parsers
  15. def ampersand: Parser[Ampersand]

    Permalink
    Attributes
    protected
  16. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  17. def cached: Parser[Token]

    Permalink
    Attributes
    protected
  18. def chainl1[T, U](first: ⇒ Parser[T], p: ⇒ Parser[U], q: ⇒ Parser[(T, U) ⇒ T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  19. def chainl1[T](p: ⇒ Parser[T], q: ⇒ Parser[(T, T) ⇒ T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  20. def chainr1[T, U](p: ⇒ Parser[T], q: ⇒ Parser[(T, U) ⇒ U], combine: (T, U) ⇒ U, first: U): Parser[U]

    Permalink
    Definition Classes
    Parsers
  21. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  22. def commit[T](p: ⇒ Parser[T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  23. def delete: Parser[Token]

    Permalink
    Attributes
    protected
  24. def elem(e: Elem): Parser[Elem]

    Permalink
    Definition Classes
    Parsers
  25. def elem(kind: String, p: (Elem) ⇒ Boolean): Parser[Elem]

    Permalink
    Definition Classes
    Parsers
  26. def ensuring(cond: (HttpLexer) ⇒ Boolean, msg: ⇒ Any): HttpLexer

    Permalink
    Implicit information
    This member is added by an implicit conversion from HttpLexer to Ensuring[HttpLexer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  27. def ensuring(cond: (HttpLexer) ⇒ Boolean): HttpLexer

    Permalink
    Implicit information
    This member is added by an implicit conversion from HttpLexer to Ensuring[HttpLexer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  28. def ensuring(cond: Boolean, msg: ⇒ Any): HttpLexer

    Permalink
    Implicit information
    This member is added by an implicit conversion from HttpLexer to Ensuring[HttpLexer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  29. def ensuring(cond: Boolean): HttpLexer

    Permalink
    Implicit information
    This member is added by an implicit conversion from HttpLexer to Ensuring[HttpLexer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  30. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  32. def err(msg: String): Parser[Nothing]

    Permalink
    Definition Classes
    Parsers
  33. def errorToken(msg: String): Token

    Permalink
    Definition Classes
    HttpLexer → Scanners
  34. def failure(msg: String): Parser[Nothing]

    Permalink
    Definition Classes
    Parsers
  35. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from HttpLexer to StringFormat[HttpLexer] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  36. def get: Parser[Token]

    Permalink
    Attributes
    protected
  37. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  38. def guard[T](p: ⇒ Parser[T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  39. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  40. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  41. def isPrintableChar(c: Char): Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    BaseLexer
  42. def leftBrace: Parser[LeftBrace]

    Permalink
    Attributes
    protected
  43. def lexeme: Parser[Lexeme]

    Permalink
    Attributes
    protected
  44. def log[T](p: ⇒ Parser[T])(name: String): Parser[T]

    Permalink
    Definition Classes
    Parsers
  45. def method: Parser[Token]

    Permalink
    Attributes
    protected
  46. def mkList[T]: (~[T, List[T]]) ⇒ List[T]

    Permalink
    Definition Classes
    Parsers
  47. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  48. def not[T](p: ⇒ Parser[T]): Parser[Unit]

    Permalink
    Definition Classes
    Parsers
  49. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  50. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  51. def opt[T](p: ⇒ Parser[T]): Parser[Option[T]]

    Permalink
    Definition Classes
    Parsers
  52. def patch: Parser[Token]

    Permalink
    Attributes
    protected
  53. def phrase[T](p: Parser[T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  54. def positioned[T <: Positional](p: ⇒ Parser[T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  55. def post: Parser[Token]

    Permalink
    Attributes
    protected
  56. def put: Parser[Token]

    Permalink
    Attributes
    protected
  57. def questionMark: Parser[QuestionMark]

    Permalink
    Attributes
    protected
  58. def rep[T](p: ⇒ Parser[T]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
  59. def rep1[T](first: ⇒ Parser[T], p0: ⇒ Parser[T]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The p0 call-by-name arguments is evaluated at most once per constructed Parser object, instead of on every need that arises during parsing.

  60. def rep1[T](p: ⇒ Parser[T]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
  61. def rep1sep[T](p: ⇒ Parser[T], q: ⇒ Parser[Any]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
  62. def repN[T](num: Int, p: ⇒ Parser[T]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
  63. def repsep[T](p: ⇒ Parser[T], q: ⇒ Parser[Any]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
  64. def rightBrace: Parser[RightBrace]

    Permalink
    Attributes
    protected
  65. def scan(input: CharSequence): List[Token]

    Permalink
    Definition Classes
    BaseLexer
  66. def scan(input: Reader[Char]): List[Token]

    Permalink
    Definition Classes
    BaseLexer
    Annotations
    @SuppressWarnings()
  67. def slash: Parser[Slash]

    Permalink
    Attributes
    protected
  68. def success[T](v: T): Parser[T]

    Permalink
    Definition Classes
    Parsers
  69. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  71. def token: Parser[Token]

    Permalink
    Definition Classes
    HttpLexer → Scanners
  72. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  74. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  75. def whitespace: Parser[Any]

    Permalink
    Definition Classes
    HttpLexer → Scanners
  76. def [B](y: B): (HttpLexer, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from HttpLexer to ArrowAssoc[HttpLexer] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from BaseLexer

Inherited from Scanners

Inherited from Parsers

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from HttpLexer to any2stringadd[HttpLexer]

Inherited by implicit conversion StringFormat from HttpLexer to StringFormat[HttpLexer]

Inherited by implicit conversion Ensuring from HttpLexer to Ensuring[HttpLexer]

Inherited by implicit conversion ArrowAssoc from HttpLexer to ArrowAssoc[HttpLexer]

Ungrouped