org.scalamacros.paradise.parser.Parsers.Parser

ParserTreeBuilder

class ParserTreeBuilder extends TreeBuilder

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ParserTreeBuilder
  2. TreeBuilder
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ParserTreeBuilder()

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. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  6. def addEvidenceParams(owner: scala.tools.nsc.Global.Name, vparamss: List[List[scala.tools.nsc.Global.ValDef]], contextBounds: List[scala.tools.nsc.Global.Tree]): List[List[scala.tools.nsc.Global.ValDef]]

    Append implicit parameter section if contextBounds nonempty

    Append implicit parameter section if contextBounds nonempty

    Definition Classes
    TreeBuilder
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def byNameApplication(tpe: scala.tools.nsc.Global.Tree): scala.tools.nsc.Global.Tree

    Definition Classes
    TreeBuilder
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. lazy val compat: SymbolTableCompat { val global: ParserTreeBuilder.this.global.type }

    Definition Classes
    TreeBuilder
  11. def convertToTypeName(t: scala.tools.nsc.Global.Tree): Option[scala.tools.nsc.Global.RefTree]

    Definition Classes
    TreeBuilder
  12. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. implicit def fresh: FreshNameCreator

    Definition Classes
    TreeBuilder
  16. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  17. val global: Parsers.global.type

    Definition Classes
    ParserTreeBuilderTreeBuilder
  18. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. def makeAlternative(ts: List[scala.tools.nsc.Global.Tree]): scala.tools.nsc.Global.Tree

    Create tree for a pattern alternative

    Create tree for a pattern alternative

    Definition Classes
    TreeBuilder
  21. def makeAnnotated(t: scala.tools.nsc.Global.Tree, annot: scala.tools.nsc.Global.Tree): scala.tools.nsc.Global.Tree

    Definition Classes
    TreeBuilder
  22. def makeBinop(isExpr: Boolean, left: scala.tools.nsc.Global.Tree, op: scala.tools.nsc.Global.TermName, right: scala.tools.nsc.Global.Tree, opPos: Position, targs: List[scala.tools.nsc.Global.Tree] = Nil): scala.tools.nsc.Global.Tree

    Create tree representing (unencoded) binary operation expression or pattern.

    Create tree representing (unencoded) binary operation expression or pattern.

    Definition Classes
    TreeBuilder
  23. def makeBlock(stats: List[scala.tools.nsc.Global.Tree]): scala.tools.nsc.Global.Tree

    Create block of statements stats

    Create block of statements stats

    Definition Classes
    TreeBuilder
  24. def makeCaseDef(pat: scala.tools.nsc.Global.Tree, guard: scala.tools.nsc.Global.Tree, rhs: scala.tools.nsc.Global.Tree): scala.tools.nsc.Global.CaseDef

    Create tree for case definition <case pat if guard => rhs>

    Create tree for case definition <case pat if guard => rhs>

    Definition Classes
    TreeBuilder
  25. def makeCatchFromExpr(catchExpr: scala.tools.nsc.Global.Tree): scala.tools.nsc.Global.CaseDef

    Creates tree representing: { case x: Throwable => val catchFn = catchExpr if (catchFn isDefinedAt x) catchFn(x) else throw x }

    Creates tree representing: { case x: Throwable => val catchFn = catchExpr if (catchFn isDefinedAt x) catchFn(x) else throw x }

    Definition Classes
    TreeBuilder
  26. def makeDoWhile(lname: scala.tools.nsc.Global.TermName, body: scala.tools.nsc.Global.Tree, cond: scala.tools.nsc.Global.Tree): scala.tools.nsc.Global.Tree

    Create tree representing a do-while loop

    Create tree representing a do-while loop

    Definition Classes
    TreeBuilder
  27. def makeFunctionTypeTree(argtpes: List[scala.tools.nsc.Global.Tree], restpe: scala.tools.nsc.Global.Tree): scala.tools.nsc.Global.Tree

    Create a tree representing the function type (argtpes) => restpe

    Create a tree representing the function type (argtpes) => restpe

    Definition Classes
    TreeBuilder
  28. def makeImportSelector(name: scala.tools.nsc.Global.Name, nameOffset: Int): scala.tools.nsc.Global.ImportSelector

    Definition Classes
    TreeBuilder
  29. def makeParam(pname: scala.tools.nsc.Global.TermName, tpe: scala.tools.nsc.Global.Tree): scala.tools.nsc.Global.ValDef

    Definition Classes
    TreeBuilder
  30. def makePatDef(mods: scala.tools.nsc.Global.Modifiers, pat: scala.tools.nsc.Global.Tree, rhs: scala.tools.nsc.Global.Tree): List[scala.tools.nsc.Global.ValDef]

    Definition Classes
    TreeBuilder
  31. def makePostfixSelect(start0: Int, end: Int, od: scala.tools.nsc.Global.Tree, op: scala.tools.nsc.Global.Name): scala.tools.nsc.Global.Tree

    Tree for od op, start is start0 if od.

    Tree for od op, start is start0 if od.pos is borked.

    Definition Classes
    TreeBuilder
  32. def makeSelfDef(name: scala.tools.nsc.Global.TermName, tpt: scala.tools.nsc.Global.Tree): scala.tools.nsc.Global.ValDef

    Definition Classes
    TreeBuilder
  33. def makeSyntheticTypeParam(pname: scala.tools.nsc.Global.TypeName, bounds: scala.tools.nsc.Global.Tree): scala.tools.nsc.Global.TypeDef

    Definition Classes
    TreeBuilder
  34. def makeTupleTerm(elems: List[scala.tools.nsc.Global.Tree]): scala.tools.nsc.Global.Tree

    Definition Classes
    TreeBuilder
  35. def makeTupleType(elems: List[scala.tools.nsc.Global.Tree]): scala.tools.nsc.Global.Tree

    Definition Classes
    TreeBuilder
  36. def makeWhile(startPos: Int, cond: scala.tools.nsc.Global.Tree, body: scala.tools.nsc.Global.Tree): scala.tools.nsc.Global.Tree

    Create tree representing a while loop

    Create tree representing a while loop

    Definition Classes
    TreeBuilder
  37. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  40. def o2p(offset: Int): Position

    Definition Classes
    TreeBuilder
  41. def r2p(start: Int, mid: Int, end: Int): Position

    Definition Classes
    TreeBuilder
  42. def repeatedApplication(tpe: scala.tools.nsc.Global.Tree): scala.tools.nsc.Global.Tree

    Definition Classes
    TreeBuilder
  43. def rootScalaDot(name: scala.tools.nsc.Global.Name): scala.tools.nsc.Global.Select

    Definition Classes
    TreeBuilder
  44. def scalaAnyRefConstr: scala.tools.nsc.Global.Select

    Definition Classes
    TreeBuilder
  45. def scalaDot(name: scala.tools.nsc.Global.Name): scala.tools.nsc.Global.Select

    Definition Classes
    TreeBuilder
  46. def scalaUnitConstr: scala.tools.nsc.Global.Select

    Definition Classes
    TreeBuilder
  47. def source: SourceFile

    Definition Classes
    ParserTreeBuilderTreeBuilder
  48. def stripParens(t: scala.tools.nsc.Global.Tree): scala.tools.nsc.Global.Tree

    Definition Classes
    TreeBuilder
  49. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  50. def toString(): String

    Definition Classes
    AnyRef → Any
  51. def unit: scala.tools.nsc.Global.CompilationUnit

    Definition Classes
    ParserTreeBuilderTreeBuilder
  52. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from TreeBuilder

Inherited from AnyRef

Inherited from Any

Ungrouped