CallTraversal

final
class CallTraversal(val traversal: Traversal[Call]) extends AnyVal

A call site

class AnyVal
trait Matchable
class Any

Value members

Concrete methods

def argument: Traversal[Expression]

Arguments of the call

Arguments of the call

def argument(i: Integer): Traversal[Expression]

i'th arguments of the call

i'th arguments of the call

def isDynamic: Traversal[Call]

Only dynamically dispatched calls

Only dynamically dispatched calls

def isStatic: Traversal[Call]

Only statically dispatched calls

Only statically dispatched calls

def receiver: Traversal[Expression]

The receiver of a call if the call has a receiver associated.

The receiver of a call if the call has a receiver associated.

def toMethodReturn(implicit callResolver: ICallResolver): Traversal[MethodReturn]

To formal method return parameter

To formal method return parameter

Concrete fields

val traversal: Traversal[Call]