Packages

class JavaUnitParser extends JavaParser

Source
JavaParsers.scala
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JavaUnitParser
  2. JavaParser
  3. ParserCommon
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new JavaUnitParser(unit: Global.CompilationUnit)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from JavaUnitParser toany2stringadd[JavaUnitParser] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (JavaUnitParser, B)
    Implicit
    This member is added by an implicit conversion from JavaUnitParser toArrowAssoc[JavaUnitParser] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def accept(token: Int): Int

    Consume one token of the specified type, or signal an error if it is not there.

    Consume one token of the specified type, or signal an error if it is not there.

    Definition Classes
    JavaParserParserCommon
  7. def acceptClosingAngle(): Unit
    Definition Classes
    JavaParser
  8. def adaptRecordIdentifier(): Unit

    If the next token is the identifier "record", convert it into a proper token.

    If the next token is the identifier "record", convert it into a proper token. Technically, "record" is just a restricted identifier. However, once we've figured out that it is in a position where it identifies a "record" class, it is much more convenient to promote it to a token.

    Definition Classes
    JavaParser
  9. def addCompanionObject(statics: List[Global.Tree], cdef: Global.ClassDef): List[Global.Tree]
    Definition Classes
    JavaParser
  10. def annotation(): Global.Tree

    Annotation ::= NormalAnnotation | MarkerAnnotation | SingleElementAnnotation

    Annotation ::= NormalAnnotation | MarkerAnnotation | SingleElementAnnotation

    NormalAnnotation ::= @ TypeName ( [ElementValuePairList] ) ElementValuePairList ::= ElementValuePair {, ElementValuePair} ElementValuePair ::= Identifier = ElementValue ElementValue ::= ConditionalExpressionSubset | ElementValueArrayInitializer | Annotation

    // We only support a subset of the Java syntax that can form constant expressions. // https://docs.oracle.com/javase/specs/jls/se14/html/jls-15.html#jls-15.29 // // Luckily, we can just parse matching ( and ) to find our way to the end of the the argument list. // and drop the arguments until we implement full support for Java constant expressions // ConditionalExpressionSubset := Literal | Identifier | QualifiedName | ClassLiteral

    ElementValueArrayInitializer ::= { [ElementValueList] [,] } ElementValueList ::= ElementValue {, ElementValue}

    Definition Classes
    JavaParser
  11. def annotationDecl(mods: Global.Modifiers): List[Global.Tree]
    Definition Classes
    JavaParser
  12. def annotationParents: collection.immutable.List[Global.Select]
    Definition Classes
    JavaParser
  13. def annotations(): List[Global.Tree]
    Definition Classes
    JavaParser
  14. def arrayOf(tpt: Global.Tree): Global.AppliedTypeTree
    Definition Classes
    JavaParser
  15. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  16. def basicType(): Global.Tree
    Definition Classes
    JavaParser
  17. def blankExpr: EmptyTree
    Definition Classes
    JavaParser
  18. def bound(): Global.Tree
    Definition Classes
    JavaParser
  19. def classDecl(mods: Global.Modifiers): List[Global.Tree]
    Definition Classes
    JavaParser
  20. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  21. final def commaSeparated[T](part: => T): List[T]

    , with the separator fixed to commas.

    tokenSeparated

    , with the separator fixed to commas. tokenSeparated }}}

    Definition Classes
    ParserCommon
    Annotations
    @inline()
  22. def compilationUnit(): Global.Tree

    CompilationUnit ::= [package QualId semi] TopStatSeq

    CompilationUnit ::= [package QualId semi] TopStatSeq

    Definition Classes
    JavaParser
  23. def convertToTypeId(tree: Global.Tree): Global.Tree

    Convert (qual)ident to type identifier

    Convert (qual)ident to type identifier

    Definition Classes
    JavaParser
  24. def definesInterface(token: Int): Boolean
    Definition Classes
    JavaParser
  25. def deprecationWarning(off: Int, msg: String, since: String): Unit
    Definition Classes
    JavaUnitParserParserCommon
  26. final def dropAnyBraces[T](body: => T): T
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  27. def ensuring(cond: (JavaUnitParser) => Boolean, msg: => Any): JavaUnitParser
    Implicit
    This member is added by an implicit conversion from JavaUnitParser toEnsuring[JavaUnitParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  28. def ensuring(cond: (JavaUnitParser) => Boolean): JavaUnitParser
    Implicit
    This member is added by an implicit conversion from JavaUnitParser toEnsuring[JavaUnitParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  29. def ensuring(cond: Boolean, msg: => Any): JavaUnitParser
    Implicit
    This member is added by an implicit conversion from JavaUnitParser toEnsuring[JavaUnitParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  30. def ensuring(cond: Boolean): JavaUnitParser
    Implicit
    This member is added by an implicit conversion from JavaUnitParser toEnsuring[JavaUnitParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  31. def enumConst(enumType: Global.Tree): (Global.ValDef, Boolean)
    Definition Classes
    JavaParser
  32. def enumDecl(mods: Global.Modifiers): List[Global.Tree]
    Definition Classes
    JavaParser
  33. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  34. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  35. def errorTypeTree: Global.TypeTree
    Definition Classes
    JavaParser
  36. def fieldDecls(pos: Global.Position, mods: Global.Modifiers, tpt: Global.Tree, name: Global.Name): List[Global.Tree]

    Parse a sequence of field declarations, separated by commas.

    Parse a sequence of field declarations, separated by commas. This one is tricky because a comma might also appear in an initializer. Since we don't parse initializers we don't know what the comma signifies. We solve this with a second list buffer maybe which contains potential variable definitions. Once we have reached the end of the statement, we know whether these potential definitions are real or not.

    Definition Classes
    JavaParser
  37. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  38. def formalParam(): Global.ValDef
    Definition Classes
    JavaParser
  39. def formalParams(): List[Global.ValDef]
    Definition Classes
    JavaParser
  40. def freshName(prefix: String): Global.Name
    Definition Classes
    JavaUnitParserJavaParser
  41. def freshTermName(prefix: String): Global.TermName
  42. def freshTypeName(prefix: String): Global.TypeName
  43. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  44. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  45. implicit def i2p(offset: Int): Global.Position
    Definition Classes
    JavaUnitParserJavaParser
  46. def ident(): Global.Name
    Definition Classes
    JavaParser
  47. def identForType(): Global.TypeName
    Definition Classes
    JavaParser
  48. def importDecl(): List[Global.Tree]
    Definition Classes
    JavaParser
  49. val in: JavaParsers.JavaUnitScanner
    Definition Classes
    JavaUnitParserJavaParserParserCommon
  50. final def inBraces[T](body: => T): T
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  51. final def inBracesOrError[T](body: => T, alt: T): T
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  52. final def inBracesOrNil[T](body: => List[T]): List[T]
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  53. final def inBracesOrUnit[T](body: => Global.Tree): Global.Tree
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  54. final def inBrackets[T](body: => T): T
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  55. final def inGroupers[T](left: JavaParsers.Token)(body: => T): T

    Methods inParensOrError and similar take a second argument which, should the next token not be the expected opener (e.g.

    Methods inParensOrError and similar take a second argument which, should the next token not be the expected opener (e.g. LPAREN) will be returned instead of the contents of the groupers. However in all cases accept(LPAREN) will be called, so a parse error will still result. If the grouping is optional, in.token should be tested before calling these methods.

    Skip trailing comma is pushed down to scanner because this abstract parser doesn't have token info.

    Definition Classes
    ParserCommon
    Annotations
    @inline()
  56. final def inParens[T](body: => T): T
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  57. final def inParensOrError[T](body: => T, alt: T): T
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  58. final def inParensOrNil[T](body: => List[T]): List[T]
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  59. final def inParensOrUnit[T](body: => Global.Tree): Global.Tree
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  60. def interfaceDecl(mods: Global.Modifiers): List[Global.Tree]
    Definition Classes
    JavaParser
  61. def interfacesOpt(): List[Global.Tree]
    Definition Classes
    JavaParser
  62. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  63. def javaDot(name: Global.Name): Global.Tree
    Definition Classes
    JavaParser
  64. def javaLangDot(name: Global.Name): Global.Tree
    Definition Classes
    JavaParser
  65. def javaLangObject(): Global.Tree
    Definition Classes
    JavaParser
  66. def javaLangRecord(): Global.Tree
    Definition Classes
    JavaParser
  67. def joinComment(trees: => List[Global.Tree]): List[Global.Tree]

    A hook for joining the comment associated with a definition.

    A hook for joining the comment associated with a definition. Overridden by scaladoc.

    Definition Classes
    JavaParser
  68. def makeCompanionObject(cdef: Global.ClassDef, statics: List[Global.Tree]): Global.Tree
    Definition Classes
    JavaParser
  69. def makeConstructor(formals: List[Global.Tree]): Global.DefDef
    Definition Classes
    JavaParser
  70. def makePackaging(pkg: Global.RefTree, stats: List[Global.Tree]): Global.PackageDef
    Definition Classes
    JavaParser
  71. def makeParam(name: Global.TermName, tpt: Global.Tree): Global.ValDef
    Definition Classes
    JavaParser
  72. def makeParam(name: String, tpt: Global.Tree): Global.ValDef
    Definition Classes
    JavaParser
  73. final def makeParens(body: => List[Global.Tree]): Global.Parens

    Creates an actual Parens node (only used during parsing.)

    Creates an actual Parens node (only used during parsing.)

    Definition Classes
    ParserCommon
    Annotations
    @inline()
  74. def makeSyntheticParam(count: Int, tpt: Global.Tree): Global.ValDef
    Definition Classes
    JavaParser
  75. def makeTemplate(parents: List[Global.Tree], stats: List[Global.Tree]): Global.Template
    Definition Classes
    JavaParser
  76. def memberDecl(mods: Global.Modifiers, parentToken: Int): List[Global.Tree]
    Definition Classes
    JavaParser
  77. def methodBody(): Global.Tree
    Definition Classes
    JavaParser
  78. def modifiers(inInterface: Boolean): Global.Modifiers
    Definition Classes
    JavaParser
  79. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  80. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  81. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  82. final def optArrayBrackets(tpt: Global.Tree): Global.Tree
    Definition Classes
    JavaParser
    Annotations
    @tailrec()
  83. def optThrows(): Unit
    Definition Classes
    JavaParser
  84. def parse(): Global.Tree

    this is the general parse method

    this is the general parse method

    Definition Classes
    JavaParser
  85. def qualId(orClassLiteral: Boolean = false): Global.Tree
    Definition Classes
    JavaParser
  86. def recordDecl(mods: Global.Modifiers): List[Global.Tree]
    Definition Classes
    JavaParser
  87. def repsep[T <: Global.Tree](p: () => T, sep: Int): List[T]
    Definition Classes
    JavaParser
  88. def separatedToken[T](separator: JavaParsers.Token, part: => T): List[T]

    .

    { `sep` part }

    . { sep part } }}}

    Definition Classes
    ParserCommon
  89. def skip(): Unit
    Attributes
    protected
    Definition Classes
    JavaParser
  90. def skipAhead(): Unit

    skip parent or brace enclosed sequence of things

    skip parent or brace enclosed sequence of things

    Definition Classes
    JavaParser
  91. def skipTo(tokens: Int*): Unit
    Definition Classes
    JavaParser
  92. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  93. def syntaxError(pos: Int, msg: String): Unit
    Definition Classes
    JavaUnitParserJavaParser
  94. def syntaxError(pos: Int, msg: String, skipIt: Boolean): Unit
    Definition Classes
    JavaParser
  95. def syntaxError(msg: String, skipIt: Boolean): Unit
    Definition Classes
    JavaParser
  96. def termDecl(mods: Global.Modifiers, parentToken: Int): List[Global.Tree]
    Definition Classes
    JavaParser
  97. def toString(): String
    Definition Classes
    AnyRef → Any
  98. def tokenSeparated[T](separator: JavaParsers.Token, part: => T): List[T]

    .

    { `sep` part }

    . { sep part } }}}

    Definition Classes
    ParserCommon
  99. def tryLiteral(negate: Boolean = false): Option[Global.Constant]
    Definition Classes
    JavaParser
  100. def typ(): Global.Tree
    Definition Classes
    JavaParser
  101. def typeArgs(t: Global.Tree): Global.Tree
    Definition Classes
    JavaParser
  102. def typeBody(leadingToken: Int): (List[Global.Tree], List[Global.Tree])
    Definition Classes
    JavaParser
  103. def typeBodyDecls(parentToken: Int): (List[Global.Tree], List[Global.Tree])
    Definition Classes
    JavaParser
  104. def typeDecl(mods: Global.Modifiers): List[Global.Tree]
    Definition Classes
    JavaParser
  105. def typeParam(): Global.TypeDef
    Definition Classes
    JavaParser
  106. def typeParams(): List[Global.TypeDef]
    Definition Classes
    JavaParser
  107. val unit: Global.CompilationUnit
  108. def varDecl(pos: Global.Position, mods: Global.Modifiers, tpt: Global.Tree, name: Global.TermName): Global.ValDef
    Definition Classes
    JavaParser
  109. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  110. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  111. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  112. def warning(pos: Int, msg: String): Unit
    Definition Classes
    JavaUnitParserJavaParser

Deprecated Value Members

  1. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from JavaUnitParser toStringFormat[JavaUnitParser] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  2. def [B](y: B): (JavaUnitParser, B)
    Implicit
    This member is added by an implicit conversion from JavaUnitParser toArrowAssoc[JavaUnitParser] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from JavaParser

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromJavaUnitParser to any2stringadd[JavaUnitParser]

Inherited by implicit conversion StringFormat fromJavaUnitParser to StringFormat[JavaUnitParser]

Inherited by implicit conversion Ensuring fromJavaUnitParser to Ensuring[JavaUnitParser]

Inherited by implicit conversion ArrowAssoc fromJavaUnitParser to ArrowAssoc[JavaUnitParser]

Ungrouped