trait Aliases extends AnyRef
EXPERIMENTAL
A slice of the Scala macros context that defines shorthands for the most frequently used types and functions of the underlying compiler universe.
- Self Type
- blackbox.Context
- Source
- Aliases.scala
- Alphabetic
- By Inheritance
- Aliases
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Type Members
-
type
Expr[+T] = Universe.Expr[T]
Expr wraps an abstract syntax tree and tags it with its type.
-
type
Modifiers = Universe.Modifiers
The type of tree modifiers.
-
type
Name = Universe.Name
The abstract type of names.
-
type
Position = Universe.Position
Defines a universe-specific notion of positions.
-
type
Scope = Universe.Scope
The base type of all scopes.
-
type
Symbol = Universe.Symbol
The type of symbols representing declarations.
-
type
TermName = Universe.TermName
The abstract type of names representing terms.
-
type
Tree = Universe.Tree
The type of Scala abstract syntax trees.
-
type
Type = Universe.Type
The type of Scala types, and also Scala type signatures.
The type of Scala types, and also Scala type signatures. (No difference is internally made between the two).
-
type
TypeName = Universe.TypeName
The abstract type of names representing types.
-
type
TypeTag[T] = Universe.TypeTag[T]
The type of type tags.
-
type
WeakTypeTag[T] = Universe.WeakTypeTag[T]
The type of weak type tags.
-
type
CompilationUnit = Universe.CompilationUnit
The type of compilation units.
The type of compilation units.
- Annotations
- @deprecated
- Deprecated
(Since version 2.11.0) c.enclosingTree-style APIs are now deprecated; consult the scaladoc for more information
- See also
-
type
Run = Universe.Run
The type of compilation runs.
The type of compilation runs.
- Annotations
- @deprecated
- Deprecated
(Since version 2.11.0) c.enclosingTree-style APIs are now deprecated; consult the scaladoc for more information
- See also
Abstract Value Members
-
abstract
def
Expr[T](tree: blackbox.Context.Tree)(implicit arg0: blackbox.Context.WeakTypeTag[T]): blackbox.Context.Expr[T]
A shorthand to create an expr.
A shorthand to create an expr.
Unlike the conventional expr factory, which requires a scala.reflect.api.TreeCreator, this one accepts a regular tree, but the resulting exprs are unable of being migrated to other universes/mirrors (the functionality normally not needed for macros, since there is only one compile-time universe and only one compile-time mirror).
-
abstract
def
TypeTag[T](tpe: blackbox.Context.Type): blackbox.Context.TypeTag[T]
A shorthand to create a type tag.
A shorthand to create a type tag.
Unlike the conventional type tag factory, which requires a scala.reflect.api.TypeCreator, this one accepts a regular type, but the resulting type tags are unable of being migrated to other universes/mirrors (the functionality normally not needed for macros, since there is only one compile-time universe and only one compile-time mirror).
-
abstract
def
WeakTypeTag[T](tpe: blackbox.Context.Type): blackbox.Context.WeakTypeTag[T]
A shorthand to create a weak type tag.
A shorthand to create a weak type tag.
Unlike the conventional type tag factory, which requires a scala.reflect.api.TypeCreator, this one accepts a regular type, but the resulting type tags are unable of being migrated to other universes/mirrors (the functionality normally not needed for macros, since there is only one compile-time universe and only one compile-time mirror).
Concrete Value Members
-
val
Expr: Universe.Expr.type
Constructor/Extractor for
Expr
. -
val
TypeTag: Universe.TypeTag.type
Constructor/Extractor for
TypeTag
. -
val
WeakTypeTag: Universe.WeakTypeTag.type
Constructor/Extractor for
WeakTypeTag
. -
def
symbolOf[T](implicit arg0: blackbox.Context.WeakTypeTag[T]): Universe.TypeSymbol
Type symbol of
x
as derived from a type tag. -
def
typeOf[T](implicit ttag: blackbox.Context.TypeTag[T]): blackbox.Context.Type
Shortcut for
implicitly[TypeTag[T]].tpe
-
def
typeTag[T](implicit ttag: blackbox.Context.TypeTag[T]): blackbox.Context.TypeTag[T]
Shortcut for
implicitly[TypeTag[T]]
-
def
weakTypeOf[T](implicit attag: blackbox.Context.WeakTypeTag[T]): blackbox.Context.Type
Shortcut for
implicitly[WeakTypeTag[T]].tpe
-
def
weakTypeTag[T](implicit attag: blackbox.Context.WeakTypeTag[T]): blackbox.Context.WeakTypeTag[T]
Shortcut for
implicitly[WeakTypeTag[T]]