scala.tools.nsc.javac.JavaParsers

JavaParser

abstract class JavaParser extends ParserCommon

Linear Supertypes
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. JavaParser
  2. ParserCommon
  3. AnyRef
  4. Any
Implicitly
  1. by StringAdd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  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: JavaParsers.Offset, msg: String): Unit

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

  3. implicit abstract def i2p(offset: Int): Global.Position

    Attributes
    protected
  4. abstract val in: JavaParsers.JavaScanner

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

  6. 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[JavaParser] performed by method StringAdd 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 ArrowAssoc 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[Global.Tree], cdef: Global.ClassDef): List[Global.Tree]

  11. def annotation(): Unit

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

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

  13. def annotationParents: collection.immutable.List[Global.Select]

  14. def annotations(): List[Global.Tree]

  15. def arrayOf(tpt: Global.Tree): Global.AppliedTypeTree

  16. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  17. def basicType(): Global.Tree

  18. def blankExpr: Global.Ident

  19. def bound(): Global.Tree

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

  21. def clone(): AnyRef

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

    CompilationUnit ::= [package QualId semi] TopStatSeq

  23. def convertToTypeId(tree: Global.Tree): Global.Tree

    Convert (qual)ident to type identifier

  24. def definesInterface(token: Int): Boolean

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

    Definition Classes
    ParserCommon
    Annotations
    @inline()
  26. 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 Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  27. def ensuring(cond: (JavaParser) ⇒ Boolean): JavaParser

    Implicit information
    This member is added by an implicit conversion from JavaParser to Ensuring[JavaParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  28. 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 Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  29. def ensuring(cond: Boolean): JavaParser

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

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

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

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

    Definition Classes
    AnyRef → Any
  34. def errorTypeTree: Global.TypeTree

  35. 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.

  36. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  37. def formalParam(): Global.ValDef

  38. def formalParams(): List[Global.ValDef]

  39. def formatted(fmtstr: String): String

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

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

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

  43. def identForType(): Global.TypeName

  44. def importCompanionObject(cdef: Global.ClassDef): Global.Tree

  45. def importDecl(): List[Global.Tree]

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

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

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

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

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

    Definition Classes
    ParserCommon
    Annotations
    @inline()
  51. 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()
  52. final def inParensOrError[T](body: ⇒ T, alt: T): T

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

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

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

  56. def interfacesOpt(): List[Global.Tree]

  57. final def isInstanceOf[T0]: Boolean

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

  59. def javaLangDot(name: Global.Name): Global.Tree

  60. def javaLangObject(): Global.Tree

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

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

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

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

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

  66. 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()
  67. def makeSyntheticParam(count: Int, tpt: Global.Tree): Global.ValDef

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

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

  70. def methodBody(): Global.Tree

  71. def modifiers(inInterface: Boolean): Global.Modifiers

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

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

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

    Definition Classes
    AnyRef
  75. def optArrayBrackets(tpt: Global.Tree): Global.Tree

  76. def optThrows(): Unit

  77. def parse(): Global.Tree

    this is the general parse method

  78. def qualId(): Global.RefTree

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

  80. def skip(): Unit

    Attributes
    protected
  81. def skipAhead(): Unit

    skip parent or brace enclosed sequence of things

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

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

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

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

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

  87. def toString(): String

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

  89. def typeArgs(t: Global.Tree): Global.Tree

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

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

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

  93. def typeParam(): Global.TypeDef

  94. def typeParams(): List[Global.TypeDef]

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

  96. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  99. def [B](y: B): (JavaParser, B)

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

Inherited from JavaParsers.ParserCommon

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion StringAdd from JavaParser to StringAdd[JavaParser]

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

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

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

Ungrouped