scala.tools.nsc.javac.JavaParsers

JavaParser

abstract class JavaParser extends ParserCommon

Source
JavaParsers.scala
Linear Supertypes
ParserCommon, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. JavaParser
  2. ParserCommon
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringfmt
  2. by any2stringadd
  3. by any2ArrowAssoc
  4. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JavaParser()

Abstract Value Members

  1. abstract def deprecationWarning(off: Int, msg: String): Unit

    Definition Classes
    ParserCommon
  2. abstract def freshName(prefix: String): Name

    Definition Classes
    JavaParserParserCommon
  3. abstract def freshTermName(prefix: String): TermName

    Definition Classes
    ParserCommon
  4. abstract def freshTypeName(prefix: String): TypeName

    Definition Classes
    ParserCommon
  5. implicit abstract def i2p(offset: Int): Position

    Attributes
    protected
  6. abstract val in: JavaScanner

    Definition Classes
    JavaParserParserCommon
  7. abstract def syntaxError(pos: Int, msg: String): Unit

  8. abstract def warning(pos: Int, msg: String): Unit

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

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

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

    Definition Classes
    AnyRef
  7. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  8. 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
  9. def acceptClosingAngle(): Unit

  10. def addCompanionObject(statics: List[Tree], cdef: ClassDef): List[Tree]

  11. def annotation(): Unit

    Annotation ::= TypeName [( AnnotationArgument {, AnnotationArgument} )]

  12. def annotationDecl(mods: Modifiers): List[Tree]

  13. def annotations(): List[Tree]

  14. def arrayOf(tpt: Tree): AppliedTypeTree

  15. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  16. def basicType(): Tree

  17. def blankExpr: Ident

  18. def bound(): Tree

  19. def classDecl(mods: Modifiers): List[Tree]

  20. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  21. def compilationUnit(): Tree

    CompilationUnit ::= [package QualId semi] TopStatSeq

  22. def convertToTypeId(tree: Tree): Tree

    Convert (qual)ident to type identifier

  23. def definesInterface(token: Int): Boolean

  24. final def dropAnyBraces[T](body: ⇒ T): T

    Definition Classes
    ParserCommon
    Annotations
    @inline()
  25. def ensuring(cond: (JavaParser) ⇒ Boolean, msg: ⇒ Any): JavaParser

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

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

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

    Implicit information
    This member is added by an implicit conversion from JavaParser to Ensuring[JavaParser] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  29. def enumConst(enumType: Tree): ValDef

  30. def enumDecl(mods: Modifiers): List[Tree]

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

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

    Definition Classes
    AnyRef → Any
  33. def errorPatternTree: Ident

  34. def errorTermTree: Literal

  35. def errorTypeTree: TypeTree

  36. def fieldDecls(pos: Position, mods: Modifiers, tpt: Tree, name: Name): List[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.

  37. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  38. def formalParam(): ValDef

  39. def formalParams(): List[ValDef]

  40. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from JavaParser to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  41. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  43. def ident(): Name

  44. def identForType(): TypeName

  45. def importCompanionObject(cdef: ClassDef): Tree

  46. def importDecl(): List[Tree]

  47. final def inBraces[T](body: ⇒ T): T

    Definition Classes
    ParserCommon
    Annotations
    @inline()
  48. final def inBracesOrError[T](body: ⇒ T, alt: T): T

    Definition Classes
    ParserCommon
    Annotations
    @inline()
  49. final def inBracesOrNil[T](body: ⇒ List[T]): List[T]

    Definition Classes
    ParserCommon
    Annotations
    @inline()
  50. final def inBracesOrUnit[T](body: ⇒ Tree): Tree

    Definition Classes
    ParserCommon
    Annotations
    @inline()
  51. final def inBrackets[T](body: ⇒ T): T

    Definition Classes
    ParserCommon
    Annotations
    @inline()
  52. final def inParens[T](body: ⇒ T): T

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

    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.

    Definition Classes
    ParserCommon
    Annotations
    @inline()
  53. final def inParensOrError[T](body: ⇒ T, alt: T): T

    Definition Classes
    ParserCommon
    Annotations
    @inline()
  54. final def inParensOrNil[T](body: ⇒ List[T]): List[T]

    Definition Classes
    ParserCommon
    Annotations
    @inline()
  55. final def inParensOrUnit[T](body: ⇒ Tree): Tree

    Definition Classes
    ParserCommon
    Annotations
    @inline()
  56. def interfaceDecl(mods: Modifiers): List[Tree]

  57. def interfacesOpt(): List[Tree]

  58. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  59. def javaDot(name: Name): Tree

  60. def javaLangDot(name: Name): Tree

  61. def javaLangObject(): Tree

  62. def makeCompanionObject(cdef: ClassDef, statics: List[Tree]): Tree

  63. def makeConstructor(formals: List[Tree]): DefDef

  64. def makePackaging(pkg: RefTree, stats: List[Tree]): PackageDef

  65. def makeParam(name: TermName, tpt: Tree): ValDef

  66. def makeParam(name: String, tpt: Tree): ValDef

  67. final def makeParens(body: ⇒ List[Tree]): Parens

    Creates an actual Parens node (only used during parsing.

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

    Definition Classes
    ParserCommon
    Annotations
    @inline()
  68. def makeSyntheticParam(count: Int, tpt: Tree): ValDef

  69. def makeTemplate(parents: List[Tree], stats: List[Tree]): Template

  70. def memberDecl(mods: Modifiers, parentToken: Int): List[Tree]

  71. def methodBody(): Tree

  72. def modifiers(inInterface: Boolean): Modifiers

  73. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  74. final def notify(): Unit

    Definition Classes
    AnyRef
  75. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  76. def optArrayBrackets(tpt: Tree): Tree

  77. def optThrows(): Unit

  78. def parse(): Tree

    this is the general parse method

  79. def posToReport: Int

    Attributes
    protected
  80. def qualId(): RefTree

  81. def repsep[T <: Tree](p: () ⇒ T, sep: Int): List[T]

  82. val self: Any

    Implicit information
    This member is added by an implicit conversion from JavaParser to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
  83. val self: Any

    Implicit information
    This member is added by an implicit conversion from JavaParser to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  84. def skip(): Unit

    Attributes
    protected
  85. def skipAhead(): Unit

    skip parent or brace enclosed sequence of things

  86. def skipTo(tokens: Int*): Unit

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

    Definition Classes
    AnyRef
  88. def syntaxError(pos: Int, msg: String, skipIt: Boolean): Unit

  89. def syntaxError(msg: String, skipIt: Boolean): Unit

  90. def termDecl(mods: Modifiers, parentToken: Int): List[Tree]

  91. def toString(): String

    Definition Classes
    AnyRef → Any
  92. def typ(): Tree

  93. def typeArgs(t: Tree): Tree

  94. def typeBody(leadingToken: Int, parentName: Name): (List[Tree], List[Tree])

  95. def typeBodyDecls(parentToken: Int, parentName: Name): (List[Tree], List[Tree])

  96. def typeDecl(mods: Modifiers): List[Tree]

  97. def typeParam(): TypeDef

  98. def typeParams(): List[TypeDef]

  99. def varDecl(pos: Position, mods: Modifiers, tpt: Tree, name: TermName): ValDef

  100. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  103. def warning(msg: String): Unit

  104. def [B](y: B): (JavaParser, B)

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

Deprecated Value Members

  1. def x: JavaParser

    Implicit information
    This member is added by an implicit conversion from JavaParser to ArrowAssoc[JavaParser] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: JavaParser

    Implicit information
    This member is added by an implicit conversion from JavaParser to Ensuring[JavaParser] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from ParserCommon

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringfmt from JavaParser to StringFormat

Inherited by implicit conversion any2stringadd from JavaParser to StringAdd

Inherited by implicit conversion any2ArrowAssoc from JavaParser to ArrowAssoc[JavaParser]

Inherited by implicit conversion any2Ensuring from JavaParser to Ensuring[JavaParser]