c

scala.tools.nsc.doc.ScaladocSyntaxAnalyzer

ScaladocJavaUnitParser

class ScaladocJavaUnitParser extends JavaUnitParser

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ScaladocJavaUnitParser
  2. JavaUnitParser
  3. JavaParser
  4. ParserCommon
  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 ScaladocJavaUnitParser(unit: G.CompilationUnit)

Value Members

  1. 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
  2. def acceptClosingAngle(): Unit
    Definition Classes
    JavaParser
  3. def addCompanionObject(statics: List[G.Tree], cdef: G.ClassDef): List[G.Tree]
    Definition Classes
    JavaParser
  4. def annotation(): Unit

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

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

    Definition Classes
    JavaParser
  5. def annotationDecl(mods: G.Modifiers): List[G.Tree]
    Definition Classes
    JavaParser
  6. def annotationParents: collection.immutable.List[G.Select]
    Definition Classes
    JavaParser
  7. def annotations(): List[G.Tree]
    Definition Classes
    JavaParser
  8. def arrayOf(tpt: G.Tree): G.AppliedTypeTree
    Definition Classes
    JavaParser
  9. def basicType(): G.Tree
    Definition Classes
    JavaParser
  10. def blankExpr: G.EmptyTree.type
    Definition Classes
    JavaParser
  11. def bound(): G.Tree
    Definition Classes
    JavaParser
  12. def classDecl(mods: G.Modifiers): List[G.Tree]
    Definition Classes
    JavaParser
  13. def compilationUnit(): G.Tree

    CompilationUnit ::= [package QualId semi] TopStatSeq

    CompilationUnit ::= [package QualId semi] TopStatSeq

    Definition Classes
    JavaParser
  14. def convertToTypeId(tree: G.Tree): G.Tree

    Convert (qual)ident to type identifier

    Convert (qual)ident to type identifier

    Definition Classes
    JavaParser
  15. def definesInterface(token: Int): Boolean
    Definition Classes
    JavaParser
  16. def deprecationWarning(off: Int, msg: String, since: String): Unit
    Definition Classes
    JavaUnitParserParserCommon
  17. final def dropAnyBraces[T](body: ⇒ T): T
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  18. def enumConst(enumType: G.Tree): (G.ValDef, Boolean)
    Definition Classes
    JavaParser
  19. def enumDecl(mods: G.Modifiers): List[G.Tree]
    Definition Classes
    JavaParser
  20. def errorTypeTree: G.TypeTree
    Definition Classes
    JavaParser
  21. def fieldDecls(pos: G.Position, mods: G.Modifiers, tpt: G.Tree, name: G.Name): List[G.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
  22. def formalParam(): G.ValDef
    Definition Classes
    JavaParser
  23. def formalParams(): List[G.ValDef]
    Definition Classes
    JavaParser
  24. def freshName(prefix: String): G.Name
    Definition Classes
    JavaUnitParserJavaParser
  25. def freshTermName(prefix: String): G.TermName
    Definition Classes
    JavaUnitParser
  26. def freshTypeName(prefix: String): G.TypeName
    Definition Classes
    JavaUnitParser
  27. implicit def i2p(offset: Int): G.Position
    Definition Classes
    JavaUnitParserJavaParser
  28. def ident(): G.Name
    Definition Classes
    JavaParser
  29. def identForType(): G.TypeName
    Definition Classes
    JavaParser
  30. def importCompanionObject(cdef: G.ClassDef): G.Tree
    Definition Classes
    JavaParser
  31. def importDecl(): List[G.Tree]
    Definition Classes
    JavaParser
  32. val in: ScaladocJavaUnitScanner
  33. final def inBraces[T](body: ⇒ T): T
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  34. final def inBracesOrError[T](body: ⇒ T, alt: T): T
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  35. final def inBracesOrNil[T](body: ⇒ List[T]): List[T]
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  36. final def inBracesOrUnit[T](body: ⇒ G.Tree): G.Tree
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  37. final def inBrackets[T](body: ⇒ T): T
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  38. 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()
  39. final def inParensOrError[T](body: ⇒ T, alt: T): T
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  40. final def inParensOrNil[T](body: ⇒ List[T]): List[T]
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  41. final def inParensOrUnit[T](body: ⇒ G.Tree): G.Tree
    Definition Classes
    ParserCommon
    Annotations
    @inline()
  42. def interfaceDecl(mods: G.Modifiers): List[G.Tree]
    Definition Classes
    JavaParser
  43. def interfacesOpt(): List[G.Tree]
    Definition Classes
    JavaParser
  44. def javaDot(name: G.Name): G.Tree
    Definition Classes
    JavaParser
  45. def javaLangDot(name: G.Name): G.Tree
    Definition Classes
    JavaParser
  46. def javaLangObject(): G.Tree
    Definition Classes
    JavaParser
  47. def joinComment(trees: ⇒ List[G.Tree]): List[G.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
    ScaladocJavaUnitParserJavaParser
  48. def makeCompanionObject(cdef: G.ClassDef, statics: List[G.Tree]): G.Tree
    Definition Classes
    JavaParser
  49. def makeConstructor(formals: List[G.Tree]): G.DefDef
    Definition Classes
    JavaParser
  50. def makePackaging(pkg: G.RefTree, stats: List[G.Tree]): G.PackageDef
    Definition Classes
    JavaParser
  51. def makeParam(name: G.TermName, tpt: G.Tree): G.ValDef
    Definition Classes
    JavaParser
  52. def makeParam(name: String, tpt: G.Tree): G.ValDef
    Definition Classes
    JavaParser
  53. final def makeParens(body: ⇒ List[G.Tree]): G.Parens

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

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

    Definition Classes
    ParserCommon
    Annotations
    @inline()
  54. def makeSyntheticParam(count: Int, tpt: G.Tree): G.ValDef
    Definition Classes
    JavaParser
  55. def makeTemplate(parents: List[G.Tree], stats: List[G.Tree]): G.Template
    Definition Classes
    JavaParser
  56. def memberDecl(mods: G.Modifiers, parentToken: Int): List[G.Tree]
    Definition Classes
    JavaParser
  57. def methodBody(): G.Tree
    Definition Classes
    JavaParser
  58. def modifiers(inInterface: Boolean): G.Modifiers
    Definition Classes
    JavaParser
  59. def optArrayBrackets(tpt: G.Tree): G.Tree
    Definition Classes
    JavaParser
  60. def optThrows(): Unit
    Definition Classes
    JavaParser
  61. def parse(): G.Tree

    this is the general parse method

    this is the general parse method

    Definition Classes
    JavaParser
  62. def qualId(): G.RefTree
    Definition Classes
    JavaParser
  63. def repsep[T <: G.Tree](p: () ⇒ T, sep: Int): List[T]
    Definition Classes
    JavaParser
  64. def skipAhead(): Unit

    skip parent or brace enclosed sequence of things

    skip parent or brace enclosed sequence of things

    Definition Classes
    JavaParser
  65. def skipTo(tokens: Int*): Unit
    Definition Classes
    JavaParser
  66. def syntaxError(pos: Int, msg: String): Unit
    Definition Classes
    JavaUnitParserJavaParser
  67. def syntaxError(pos: Int, msg: String, skipIt: Boolean): Unit
    Definition Classes
    JavaParser
  68. def syntaxError(msg: String, skipIt: Boolean): Unit
    Definition Classes
    JavaParser
  69. def termDecl(mods: G.Modifiers, parentToken: Int): List[G.Tree]
    Definition Classes
    JavaParser
  70. def tryLiteral(negate: Boolean = false): Option[G.Constant]
    Definition Classes
    JavaParser
  71. def typ(): G.Tree
    Definition Classes
    JavaParser
  72. def typeArgs(t: G.Tree): G.Tree
    Definition Classes
    JavaParser
  73. def typeBody(leadingToken: Int, parentName: G.Name): (List[G.Tree], List[G.Tree])
    Definition Classes
    JavaParser
  74. def typeBodyDecls(parentToken: Int, parentName: G.Name): (List[G.Tree], List[G.Tree])
    Definition Classes
    JavaParser
  75. def typeDecl(mods: G.Modifiers): List[G.Tree]
    Definition Classes
    JavaParser
  76. def typeParam(): G.TypeDef
    Definition Classes
    JavaParser
  77. def typeParams(): List[G.TypeDef]
    Definition Classes
    JavaParser
  78. val unit: G.CompilationUnit
    Definition Classes
    JavaUnitParser
  79. def varDecl(pos: G.Position, mods: G.Modifiers, tpt: G.Tree, name: G.TermName): G.ValDef
    Definition Classes
    JavaParser
  80. def warning(pos: Int, msg: String): Unit
    Definition Classes
    JavaUnitParserJavaParser