Packages

c

scala.meta.internal.metals.callHierarchy

CallHierarchyProvider

final case class CallHierarchyProvider(workspace: io.AbsolutePath, semanticdbs: () => Semanticdbs, definition: DefinitionProvider, references: ReferenceProvider, icons: Icons, compilers: () => Compilers, trees: Trees, buildTargets: BuildTargets, supermethods: Supermethods)(implicit ec: ExecutionContext) extends CallHierarchyHelpers with Product with Serializable

Linear Supertypes
java.io.Serializable, Product, Equals, CallHierarchyHelpers, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CallHierarchyProvider
  2. Serializable
  3. Product
  4. Equals
  5. CallHierarchyHelpers
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new CallHierarchyProvider(workspace: io.AbsolutePath, semanticdbs: () => Semanticdbs, definition: DefinitionProvider, references: ReferenceProvider, icons: Icons, compilers: () => Compilers, trees: Trees, buildTargets: BuildTargets, supermethods: Supermethods)(implicit ec: ExecutionContext)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val buildTargets: BuildTargets
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  7. val compilers: () => Compilers
  8. def containsDuplicates[T](visited: Seq[T]): Boolean
    Definition Classes
    CallHierarchyHelpers
  9. val definition: DefinitionProvider
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def extractNameFromMember(tree: Tree): Option[RealRoot]
    Definition Classes
    CallHierarchyHelpers
  12. def extractSelectTree(tree: semanticdb.Tree): Option[SelectTree]
    Definition Classes
    CallHierarchyHelpers
  13. def findDefinition(from: Tree, prev: Option[Tree] = None, indices: List[Int] = Nil): Option[RealRoot]

    Go up in the tree to find a specified tree or find any definition.

    Go up in the tree to find a specified tree or find any definition. If the specified item is founded this function will return the UnamedRealRoot(specified), otherwise this function will return the definition in the form of NamedRealRoot(definition, defintionName).

    Definition Classes
    CallHierarchyHelpers
  14. def findRealRoot(root: Tree): Option[RealRoot]

    Find the root where symbols should be searched for.

    Find the root where symbols should be searched for. Useful for handling Pats.

    Definition Classes
    CallHierarchyHelpers
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  16. val icons: Icons
  17. def incomingCalls(params: CallHierarchyIncomingCallsParams, token: CancelToken)(implicit ec: ExecutionContext): Future[List[CallHierarchyIncomingCall]]

    Resolve incoming calls for a given call hierarchy item.

  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def isTypeDeclaration(tree: Tree): Boolean

    Type declarations are not considered in call hierarchy request, this function helps to filter them.

    Type declarations are not considered in call hierarchy request, this function helps to filter them.

    Definition Classes
    CallHierarchyHelpers
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  23. def outgoingCalls(params: CallHierarchyOutgoingCallsParams, token: CancelToken)(implicit ec: ExecutionContext): Future[List[CallHierarchyOutgoingCall]]

    Resolve outgoing calls for a given call hierarchy item.

  24. def pathsToCheck(references: ReferenceProvider, source: io.AbsolutePath, symbols: Set[String], isLocal: Boolean, searchLocal: Boolean = true)(implicit ec: ExecutionContext): Future[List[io.AbsolutePath]]

    Give the potentials paths where a set of symbols can be referenced

    Give the potentials paths where a set of symbols can be referenced

    Definition Classes
    CallHierarchyHelpers
  25. def prepare(params: CallHierarchyPrepareParams, token: CancelToken)(implicit ec: ExecutionContext): Future[List[CallHierarchyItem]]

    Prepare call hierarchy request by returning a call hierarchy item, resolved for the given text document position.

  26. def productElementNames: Iterator[String]
    Definition Classes
    Product
  27. val references: ReferenceProvider
  28. val semanticdbs: () => Semanticdbs
  29. val supermethods: Supermethods
  30. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  31. def traverseTreeWithIndices(tree: Tree, indices: List[Int]): Option[Tree]
    Definition Classes
    CallHierarchyHelpers
  32. val trees: Trees
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. val workspace: io.AbsolutePath

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from java.io.Serializable

Inherited from Product

Inherited from Equals

Inherited from CallHierarchyHelpers

Inherited from AnyRef

Inherited from Any

Ungrouped