Wildcard

oxygen.meta.Meta.Tree.Statement.Term.Ref.Ident.Wildcard
See theWildcard companion object
final case class Wildcard(raw: quotes.reflect.Wildcard) extends Ident

Matches a term identifier and returns its name

Attributes

Companion
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Ident
trait Ref
trait Term
trait Statement
trait Tree
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def appliedTo(arg: Term, args: Term*): Term

An apply node with given arguments: tree(arg, args0, ..., argsN)

An apply node with given arguments: tree(arg, args0, ..., argsN)

Attributes

Inherited from:
Term
def appliedTo(arg: Term): Term

A unary apply node with given argument: tree(arg)

A unary apply node with given argument: tree(arg)

Attributes

Inherited from:
Term
def appliedToArgs(args: List[Term]): Apply

An apply node with given argument list tree(args(0), ..., args(args.length - 1))

An apply node with given argument list tree(args(0), ..., args(args.length - 1))

Attributes

Inherited from:
Term
def appliedToArgss(argss: List[List[Term]]): Term

The current tree applied to given argument lists: tree (argss(0)) ... (argss(argss.length -1))

The current tree applied to given argument lists: tree (argss(0)) ... (argss(argss.length -1))

Attributes

Inherited from:
Term

The current tree applied to (): tree()

The current tree applied to (): tree()

Attributes

Inherited from:
Term

The current tree applied to given type argument: tree[targ]

The current tree applied to given type argument: tree[targ]

Attributes

Inherited from:
Term
def appliedToTypeTrees(targs: List[TypeTree]): Term

The current tree applied to given type argument list: tree[targs(0), ..., targs(targs.length - 1)]

The current tree applied to given type argument list: tree[targs(0), ..., targs(targs.length - 1)]

Attributes

Inherited from:
Term
def appliedToTypes(targs: List[TypeRepr]): Term

The current tree applied to given type arguments: tree[targ0, ..., targN]

The current tree applied to given type arguments: tree[targ0, ..., targN]

Attributes

Inherited from:
Term
def asExpr: Expr[Any]

Convert this tree to an quoted.Expr[Any] if the tree is a valid expression or throws

Convert this tree to an quoted.Expr[Any] if the tree is a valid expression or throws

Attributes

Inherited from:
Tree
def asExprOf[A : Type]: Expr[A]

Attributes

Inherited from:
Tree
def asExprTyped[A]: Expr[A]

Attributes

Inherited from:
Tree
def etaExpand(owner: Symbol): Term

Converts a partially applied term into a lambda expression

Converts a partially applied term into a lambda expression

Attributes

Inherited from:
Term
def isExpr: Boolean

Does this tree represent a valid expression?

Does this tree represent a valid expression?

Attributes

Inherited from:
Tree
def name: String

Name of this Ident

Name of this Ident

Attributes

Inherited from:
Ident
def pos: Position

Position in the source code

Position in the source code

Attributes

Inherited from:
Tree
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
def select(sym: Symbol): Select

A select node that selects the given symbol.

A select node that selects the given symbol.

Attributes

Inherited from:
Term
def show(using quotes.reflect.Printer[quotes.reflect.Tree]): String

Shows the tree as String

Shows the tree as String

Attributes

Inherited from:
Tree
def symbol: Symbol

Symbol of defined or referred by this tree

Symbol of defined or referred by this tree

Attributes

Inherited from:
Tree
def tpe: TypeRepr

TypeRepr of this term

TypeRepr of this term

Attributes

Inherited from:
Term

Replace Ident nodes references to the underlying tree that defined them. The resulting tree is useful for inspection of the definition of some bindings.

Replace Ident nodes references to the underlying tree that defined them. The resulting tree is useful for inspection of the definition of some bindings.

Warning: This tree may contain references that are out of scope and should not be used in the generated code. This method should only used to port Scala 2 that used to access their outer scope unsoundly.

Attributes

Inherited from:
Term

Replace Inlined nodes and InlineProxy references to underlying arguments. The resulting tree is useful for inspection of the value or content of a non-inline argument.

Replace Inlined nodes and InlineProxy references to underlying arguments. The resulting tree is useful for inspection of the value or content of a non-inline argument.

Warning: This tree may contain references that are out of scope and should not be used in the generated code. This method should only used to port Scala 2 that used to access their outer scope unsoundly.

Attributes

Inherited from:
Term