Packages

class JavaUnitParser extends JavaParser

Source
JavaParsers.scala
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. All

Instance Constructors

  1. new JavaUnitParser(unit: Global.CompilationUnit)

Value Members

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

    Test two objects for inequality.

    Test two objects for inequality.

    returns

    true if !(this == that), false otherwise.

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

    Equivalent to x.hashCode except for boxed numeric types and null.

    Equivalent to x.hashCode except for boxed numeric types and null. For numerics, it returns a hash value which is consistent with value equality: if two value type instances compare as true, then ## will produce the same hash value for each of them. For null returns a hashcode where null.hashCode throws a NullPointerException.

    returns

    a hash value consistent with ==

    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from JavaUnitParser to any2stringadd[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 to ArrowAssoc[JavaUnitParser] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    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 addCompanionObject(statics: List[Global.Tree], cdef: Global.ClassDef): List[Global.Tree]
    Definition Classes
    JavaParser
  9. def annotation(): Unit

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

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

    Definition Classes
    JavaParser
  10. def annotationDecl(mods: Global.Modifiers): List[Global.Tree]
    Definition Classes
    JavaParser
  11. def annotationParents: collection.immutable.List[Global.Select]
    Definition Classes
    JavaParser
  12. def annotations(): List[Global.Tree]
    Definition Classes
    JavaParser
  13. def arrayOf(tpt: Global.Tree): Global.AppliedTypeTree
    Definition Classes
    JavaParser
  14. final def asInstanceOf[T0]: T0

    Cast the receiver object to be of type T0.

    Cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression 1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expression List(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested type.

    returns

    the receiver object.

    Definition Classes
    Any
    Exceptions thrown

    ClassCastException if the receiver object is not an instance of the erasure of type T0.

  15. def basicType(): Global.Tree
    Definition Classes
    JavaParser
  16. def blankExpr: Global.Ident
    Definition Classes
    JavaParser
  17. def bound(): Global.Tree
    Definition Classes
    JavaParser
  18. def classDecl(mods: Global.Modifiers): List[Global.Tree]
    Definition Classes
    JavaParser
  19. def clone(): AnyRef

    Create a copy of the receiver object.

    Create a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
    Note

    not specified by SLS as a member of AnyRef

  20. def compilationUnit(): Global.Tree

    CompilationUnit ::= [package QualId semi] TopStatSeq

    CompilationUnit ::= [package QualId semi] TopStatSeq

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

    Convert (qual)ident to type identifier

    Convert (qual)ident to type identifier

    Definition Classes
    JavaParser
  22. def definesInterface(token: Int): Boolean
    Definition Classes
    JavaParser
  23. def deprecationWarning(off: Int, msg: String, since: String): Unit
    Definition Classes
    JavaUnitParserParserCommon
  24. final def dropAnyBraces[T](body: ⇒ T): T
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  25. def ensuring(cond: (JavaUnitParser) ⇒ Boolean, msg: ⇒ Any): JavaUnitParser
    Implicit
    This member is added by an implicit conversion from JavaUnitParser to Ensuring[JavaUnitParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  26. def ensuring(cond: (JavaUnitParser) ⇒ Boolean): JavaUnitParser
    Implicit
    This member is added by an implicit conversion from JavaUnitParser to Ensuring[JavaUnitParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  27. def ensuring(cond: Boolean, msg: ⇒ Any): JavaUnitParser
    Implicit
    This member is added by an implicit conversion from JavaUnitParser to Ensuring[JavaUnitParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  28. def ensuring(cond: Boolean): JavaUnitParser
    Implicit
    This member is added by an implicit conversion from JavaUnitParser to Ensuring[JavaUnitParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  29. def enumConst(enumType: Global.Tree): (Global.ValDef, Boolean)
    Definition Classes
    JavaParser
  30. def enumDecl(mods: Global.Modifiers): List[Global.Tree]
    Definition Classes
    JavaParser
  31. final def eq(arg0: AnyRef): Boolean

    Tests whether the argument (that) is a reference to the receiver object (this).

    Tests whether the argument (that) is a reference to the receiver object (this).

    The eq method implements an equivalence relation on non-null instances of AnyRef, and has three additional properties:

    • It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false.
    • For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false.
    • null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    returns

    true if the argument is a reference to the receiver object; false otherwise.

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

    The equality method for reference types.

    The equality method for reference types. Default implementation delegates to eq.

    See also equals in scala.Any.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  33. def errorTypeTree: Global.TypeTree
    Definition Classes
    JavaParser
  34. 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
  35. def finalize(): Unit

    Called by the garbage collector on the receiver object when there are no more references to the object.

    Called by the garbage collector on the receiver object when there are no more references to the object.

    The details of when and if the finalize method is invoked, as well as the interaction between finalize and non-local returns and exceptions, are all platform dependent.

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

    not specified by SLS as a member of AnyRef

  36. def formalParam(): Global.ValDef
    Definition Classes
    JavaParser
  37. def formalParams(): List[Global.ValDef]
    Definition Classes
    JavaParser
  38. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from JavaUnitParser to StringFormat[JavaUnitParser] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  39. def freshName(prefix: String): Global.Name
    Definition Classes
    JavaUnitParserJavaParser
  40. def freshTermName(prefix: String): Global.TermName
  41. def freshTypeName(prefix: String): Global.TypeName
  42. final def getClass(): Class[_]

    Returns the runtime class representation of the object.

    Returns the runtime class representation of the object.

    returns

    a class object corresponding to the runtime type of the receiver.

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

    The hashCode method for reference types.

    The hashCode method for reference types. See hashCode in scala.Any.

    returns

    the hash code value for this object.

    Definition Classes
    AnyRef → Any
  44. implicit def i2p(offset: Int): Global.Position
    Definition Classes
    JavaUnitParserJavaParser
  45. def ident(): Global.Name
    Definition Classes
    JavaParser
  46. def identForType(): Global.TypeName
    Definition Classes
    JavaParser
  47. def importCompanionObject(cdef: Global.ClassDef): Global.Tree
    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 inParens[T](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.

    Definition Classes
    ParserCommon
    Annotations
    @inline()
  56. final def inParensOrError[T](body: ⇒ T, alt: T): T
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  57. final def inParensOrNil[T](body: ⇒ List[T]): List[T]
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  58. final def inParensOrUnit[T](body: ⇒ Global.Tree): Global.Tree
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  59. def interfaceDecl(mods: Global.Modifiers): List[Global.Tree]
    Definition Classes
    JavaParser
  60. def interfacesOpt(): List[Global.Tree]
    Definition Classes
    JavaParser
  61. final def isInstanceOf[T0]: Boolean

    Test whether the dynamic type of the receiver object is T0.

    Test whether the dynamic type of the receiver object is T0.

    Note that the result of the test is modulo Scala's erasure semantics. Therefore the expression 1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the specified type.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    Definition Classes
    Any
  62. def javaDot(name: Global.Name): Global.Tree
    Definition Classes
    JavaParser
  63. def javaLangDot(name: Global.Name): Global.Tree
    Definition Classes
    JavaParser
  64. def javaLangObject(): Global.Tree
    Definition Classes
    JavaParser
  65. def makeCompanionObject(cdef: Global.ClassDef, statics: List[Global.Tree]): Global.Tree
    Definition Classes
    JavaParser
  66. def makeConstructor(formals: List[Global.Tree]): Global.DefDef
    Definition Classes
    JavaParser
  67. def makePackaging(pkg: Global.RefTree, stats: List[Global.Tree]): Global.PackageDef
    Definition Classes
    JavaParser
  68. def makeParam(name: Global.TermName, tpt: Global.Tree): Global.ValDef
    Definition Classes
    JavaParser
  69. def makeParam(name: String, tpt: Global.Tree): Global.ValDef
    Definition Classes
    JavaParser
  70. 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()
  71. def makeSyntheticParam(count: Int, tpt: Global.Tree): Global.ValDef
    Definition Classes
    JavaParser
  72. def makeTemplate(parents: List[Global.Tree], stats: List[Global.Tree]): Global.Template
    Definition Classes
    JavaParser
  73. def memberDecl(mods: Global.Modifiers, parentToken: Int): List[Global.Tree]
    Definition Classes
    JavaParser
  74. def methodBody(): Global.Tree
    Definition Classes
    JavaParser
  75. def modifiers(inInterface: Boolean): Global.Modifiers
    Definition Classes
    JavaParser
  76. final def ne(arg0: AnyRef): Boolean

    Equivalent to !(this eq that).

    Equivalent to !(this eq that).

    returns

    true if the argument is not a reference to the receiver object; false otherwise.

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

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  78. final def notifyAll(): Unit

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  79. def optArrayBrackets(tpt: Global.Tree): Global.Tree
    Definition Classes
    JavaParser
  80. def optThrows(): Unit
    Definition Classes
    JavaParser
  81. def parse(): Global.Tree

    this is the general parse method

    this is the general parse method

    Definition Classes
    JavaParser
  82. def qualId(): Global.RefTree
    Definition Classes
    JavaParser
  83. def repsep[T <: Global.Tree](p: () ⇒ T, sep: Int): List[T]
    Definition Classes
    JavaParser
  84. def skip(): Unit
    Attributes
    protected
    Definition Classes
    JavaParser
  85. def skipAhead(): Unit

    skip parent or brace enclosed sequence of things

    skip parent or brace enclosed sequence of things

    Definition Classes
    JavaParser
  86. def skipTo(tokens: Int*): Unit
    Definition Classes
    JavaParser
  87. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  88. def syntaxError(pos: Int, msg: String): Unit
    Definition Classes
    JavaUnitParserJavaParser
  89. def syntaxError(pos: Int, msg: String, skipIt: Boolean): Unit
    Definition Classes
    JavaParser
  90. def syntaxError(msg: String, skipIt: Boolean): Unit
    Definition Classes
    JavaParser
  91. def termDecl(mods: Global.Modifiers, parentToken: Int): List[Global.Tree]
    Definition Classes
    JavaParser
  92. def toString(): String

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

    Definition Classes
    AnyRef → Any
  93. def typ(): Global.Tree
    Definition Classes
    JavaParser
  94. def typeArgs(t: Global.Tree): Global.Tree
    Definition Classes
    JavaParser
  95. def typeBody(leadingToken: Int, parentName: Global.Name): (List[Global.Tree], List[Global.Tree])
    Definition Classes
    JavaParser
  96. def typeBodyDecls(parentToken: Int, parentName: Global.Name): (List[Global.Tree], List[Global.Tree])
    Definition Classes
    JavaParser
  97. def typeDecl(mods: Global.Modifiers): List[Global.Tree]
    Definition Classes
    JavaParser
  98. def typeParam(): Global.TypeDef
    Definition Classes
    JavaParser
  99. def typeParams(): List[Global.TypeDef]
    Definition Classes
    JavaParser
  100. val unit: Global.CompilationUnit
  101. def varDecl(pos: Global.Position, mods: Global.Modifiers, tpt: Global.Tree, name: Global.TermName): Global.ValDef
    Definition Classes
    JavaParser
  102. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  103. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  104. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  105. def warning(pos: Int, msg: String): Unit
    Definition Classes
    JavaUnitParserJavaParser
  106. def [B](y: B): (JavaUnitParser, B)
    Implicit
    This member is added by an implicit conversion from JavaUnitParser to ArrowAssoc[JavaUnitParser] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from JavaParser

Inherited from JavaParsers.ParserCommon

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped