Packages

class FallbackMetalsLspService extends MetalsLspService

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FallbackMetalsLspService
  2. MetalsLspService
  3. IndexProviders
  4. TextDocumentService
  5. Cancelable
  6. Folder
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new FallbackMetalsLspService(ec: ExecutionContextExecutorService, sh: ScheduledExecutorService, serverInputs: MetalsServerInputs, languageClient: ConfiguredLanguageClient, initializeParams: InitializeParams, clientConfig: ClientConfiguration, statusBar: StatusBar, focusedDocument: () => Option[io.AbsolutePath], shellRunner: ShellRunner, timerProvider: TimerProvider, folder: io.AbsolutePath, folderVisibleName: Option[String], headDoctor: HeadDoctor, workDoneProgress: WorkDoneProgress, bspStatus: BspStatus)

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. def allActionCommandsIds: Set[String]
    Definition Classes
    MetalsLspService
  5. def analyzeStackTrace(content: String): Option[ExecuteCommandParams]
    Definition Classes
    MetalsLspService
  6. def applyEdits(uri: String, edits: List[TextEdit]): Future[ApplyWorkspaceEditResponse]
    Attributes
    protected
    Definition Classes
    MetalsLspService
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. val bspErrorHandler: BspErrorHandler
    Attributes
    protected
    Definition Classes
    MetalsLspService
  9. def bspSession: Option[BspSession]
    Definition Classes
    MetalsLspService
  10. val buildClient: ForwardingMetalsBuildClient
    Definition Classes
    MetalsLspService
  11. def buildData(): Seq[BuildTool]
  12. def buildHasErrors(path: io.AbsolutePath): Boolean
    Definition Classes
    MetalsLspService
  13. val buildServerPromise: Promise[Unit]
  14. val buildTargetClasses: BuildTargetClasses
    Definition Classes
    MetalsLspServiceIndexProviders
  15. val buildTargets: BuildTargets
    Definition Classes
    MetalsLspServiceIndexProviders
  16. def callHierarchyIncomingCalls(params: CallHierarchyIncomingCallsParams): CompletableFuture[java.util.List[CallHierarchyIncomingCall]]
  17. def callHierarchyOutgoingCalls(params: CallHierarchyOutgoingCallsParams): CompletableFuture[java.util.List[CallHierarchyOutgoingCall]]
  18. val callHierarchyProvider: CallHierarchyProvider
    Attributes
    protected
    Definition Classes
    MetalsLspService
  19. def cancel(): Unit
    Definition Classes
    MetalsLspServiceCancelable
  20. def cancelCompile(): Future[Unit]
    Definition Classes
    MetalsLspService
  21. val cancelables: MutableCancelable
    Attributes
    protected
    Definition Classes
    MetalsLspService
  22. def cascadeCompile(): Future[Unit]
    Definition Classes
    MetalsLspService
  23. def check(): Unit
    Attributes
    protected
    Definition Classes
    MetalsLspService
  24. def chooseClass(uri: String, granurality: ClassFinderGranularity): Future[DecoderResponse]
    Definition Classes
    MetalsLspService
  25. def cleanCompile(): Future[Unit]
    Definition Classes
    MetalsLspService
  26. def clearBloopDir(folder: io.AbsolutePath): Unit
    Attributes
    protected
    Definition Classes
    MetalsLspService
  27. def clearFolders(folders: io.AbsolutePath*): Unit
    Attributes
    protected
    Definition Classes
    MetalsLspService
  28. val clientConfig: ClientConfiguration
  29. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  30. def codeAction(params: CodeActionParams): CompletableFuture[java.util.List[CodeAction]]
  31. val codeActionProvider: CodeActionProvider
    Attributes
    protected
    Definition Classes
    MetalsLspService
  32. def codeLens(params: CodeLensParams): CompletableFuture[java.util.List[CodeLens]]
  33. val codeLensProvider: CodeLensProvider
    Attributes
    protected
    Definition Classes
    MetalsLspService
  34. val compilations: Compilations
    Definition Classes
    MetalsLspService
  35. val compilers: Compilers
    Attributes
    protected
    Definition Classes
    MetalsLspService
  36. def completion(params: CompletionParams): CompletableFuture[CompletionList]
  37. def completionItemResolve(item: CompletionItem): CompletableFuture[CompletionItem]
  38. val connectionBspStatus: ConnectionBspStatus
    Attributes
    protected
    Definition Classes
    MetalsLspService
  39. def copyWorksheetOutput(worksheetPath: io.AbsolutePath): CompletableFuture[AnyRef]
    Definition Classes
    MetalsLspService
  40. def createDebugSession(target: BuildTargetIdentifier): Future[DebugSession]
    Definition Classes
    MetalsLspService
  41. def createFile(directoryURI: Option[String], name: Option[String], fileType: Option[String], isScala: Boolean): CompletableFuture[AnyRef]
    Definition Classes
    MetalsLspService
  42. def debugDiscovery(params: DebugDiscoveryParams): Future[DebugSession]
    Definition Classes
    MetalsLspService
  43. val debugDiscovery: DebugDiscovery
    Attributes
    protected
    Definition Classes
    MetalsLspService
  44. val debugProvider: DebugProvider
    Attributes
    protected
    Definition Classes
    MetalsLspService
  45. def decodeFile(uri: String): Future[DecoderResponse]
    Definition Classes
    MetalsLspService
  46. def definition(position: TextDocumentPositionParams): CompletableFuture[java.util.List[Location]]
  47. val definitionIndex: OnDemandSymbolIndex
    Definition Classes
    MetalsLspServiceIndexProviders
  48. def definitionOrReferences(positionParams: TextDocumentPositionParams, token: CancelToken = EmptyCancelToken, definitionOnly: Boolean = false): Future[DefinitionResult]

    Returns the definition location or reference locations of a symbol at a given text document position.

    Returns the definition location or reference locations of a symbol at a given text document position. If the symbol represents the definition itself, this method returns the reference locations, otherwise this returns definition location. https://github.com/scalameta/metals/issues/755

    Definition Classes
    MetalsLspService
  49. val definitionProvider: DefinitionProvider
    Attributes
    protected
    Definition Classes
    MetalsLspService
  50. def definitionResult(position: TextDocumentPositionParams, token: CancelToken = EmptyCancelToken): Future[DefinitionResult]

    Returns textDocument/definition in addition to the resolved symbol.

    Returns textDocument/definition in addition to the resolved symbol.

    The resolved symbol is used for testing purposes only.

    Definition Classes
    MetalsLspService
  51. val diagnostics: Diagnostics
    Attributes
    protected
    Definition Classes
    MetalsLspService
  52. def didChange(params: DidChangeTextDocumentParams): CompletableFuture[Unit]
  53. def didChangeWatchedFiles(events: List[FileEvent]): Future[Unit]
    Definition Classes
    MetalsLspService
  54. def didClose(params: DidCloseTextDocumentParams): Unit
  55. def didCompileTarget(report: CompileReport): Unit
    Attributes
    protected
    Definition Classes
    MetalsLspService
  56. def didFocus(uri: String): CompletableFuture[DidFocusResult.Value]
    Definition Classes
    MetalsLspService
  57. def didOpen(params: DidOpenTextDocumentParams): CompletableFuture[Unit]
  58. def didSave(params: DidSaveTextDocumentParams): CompletableFuture[Unit]
  59. def discoverMainClasses(unresolvedParams: DebugDiscoveryParams): Future[DebugSessionParams]
    Definition Classes
    MetalsLspService
  60. def discoverTestSuites(uri: Option[String]): Future[List[BuildTargetUpdate]]
    Definition Classes
    MetalsLspService
  61. val doctor: Doctor
    Definition Classes
    MetalsLspService
  62. def documentHighlights(params: TextDocumentPositionParams): CompletableFuture[java.util.List[DocumentHighlight]]
  63. def documentSymbol(params: DocumentSymbolParams): CompletableFuture[org.eclipse.lsp4j.jsonrpc.messages.Either[java.util.List[DocumentSymbol], java.util.List[SymbolInformation]]]
  64. val documentSymbolProvider: DocumentSymbolProvider
    Attributes
    protected
    Definition Classes
    MetalsLspService
  65. val downstreamTargets: PreviouslyCompiledDownsteamTargets
    Attributes
    protected
    Definition Classes
    MetalsLspService
  66. val embedded: Embedded
    Attributes
    protected
    Definition Classes
    MetalsLspService
  67. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  68. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  69. var excludedPackageHandler: ExcludedPackagesHandler
    Definition Classes
    MetalsLspService
  70. def executeCodeActionCommand(params: ExecuteCommandParams, token: CancelToken): Future[Unit]
    Definition Classes
    MetalsLspService
  71. implicit val executionContext: ExecutionContextExecutorService
    Definition Classes
    MetalsLspServiceIndexProviders
  72. val fileDecoderProvider: FileDecoderProvider
    Attributes
    protected
    Definition Classes
    MetalsLspService
  73. def fileWatchFilter(path: Path): Boolean

    This filter is an optimization and it is closely related to which files are processed in didChangeWatchedFiles

    This filter is an optimization and it is closely related to which files are processed in didChangeWatchedFiles

    Attributes
    protected
    Definition Classes
    MetalsLspService
  74. val fileWatcher: FileWatcher
  75. def findBuildTargetByDisplayName(target: String): Option[BuildTarget]
    Definition Classes
    MetalsLspService
  76. def findTextInDependencyJars(params: FindTextInDependencyJarsRequest): Future[List[Location]]
    Definition Classes
    MetalsLspService
  77. val findTextInJars: FindTextInDependencyJars
    Attributes
    protected
    Definition Classes
    MetalsLspService
  78. val fingerprints: MutableMd5Fingerprints
    Attributes
    protected
    Definition Classes
    MetalsLspService
  79. def focusedDocument: Option[io.AbsolutePath]
    Definition Classes
    MetalsLspServiceIndexProviders
  80. val focusedDocumentBuildTarget: AtomicReference[BuildTargetIdentifier]
    Definition Classes
    MetalsLspServiceIndexProviders
  81. val folder: io.AbsolutePath
  82. val folderReportsZippper: FolderReportsZippper
    Definition Classes
    MetalsLspService
  83. def foldingRange(params: FoldingRangeRequestParams): CompletableFuture[java.util.List[FoldingRange]]
  84. val foldingRangeProvider: FoldingRangeProvider
    Attributes
    protected
    Definition Classes
    MetalsLspService
  85. def formatting(params: DocumentFormattingParams): CompletableFuture[java.util.List[TextEdit]]
  86. val formattingProvider: FormattingProvider
    Attributes
    protected
    Definition Classes
    MetalsLspService
  87. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  88. def getLocationForSymbol(symbol: String): Option[Location]
    Definition Classes
    MetalsLspService
  89. def getTastyForURI(uri: URI): Future[Either[String, String]]
    Definition Classes
    MetalsLspService
  90. def getVisibleName: String
    Definition Classes
    MetalsLspService
  91. def gotoSupermethod(textDocumentPositionParams: TextDocumentPositionParams): CompletableFuture[AnyRef]
    Definition Classes
    MetalsLspService
  92. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  93. def hover(params: HoverExtParams): CompletableFuture[Hover]
  94. def implementation(position: TextDocumentPositionParams): CompletableFuture[java.util.List[Location]]
  95. val implementationProvider: ImplementationProvider
    Definition Classes
    MetalsLspServiceIndexProviders
  96. def importAfterScalaCliChanges(servers: Iterable[ScalaCli]): Iterable[Unit]
    Attributes
    protected
    Definition Classes
    MetalsLspService
  97. def indexSources(): Future[Unit]
    Definition Classes
    MetalsLspService
  98. val indexer: Indexer
  99. var indexingPromise: Promise[Unit]
    Definition Classes
    MetalsLspServiceIndexProviders
  100. def initialized(): Future[Unit]
    Definition Classes
    MetalsLspService
  101. def inlayHintResolve(inlayHint: InlayHint): CompletableFuture[InlayHint]
  102. val inlayHintResolveProvider: InlayHintResolveProvider
    Attributes
    protected
    Definition Classes
    MetalsLspService
  103. def inlayHints(params: InlayHintParams): CompletableFuture[java.util.List[InlayHint]]
  104. val interactiveSemanticdbs: InteractiveSemanticdbs
    Attributes
    protected
    Definition Classes
    MetalsLspService
  105. val isCancelled: AtomicBoolean
    Definition Classes
    MetalsLspService
  106. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  107. lazy val isMetalsProject: Boolean
    Definition Classes
    Folder
  108. val javaFormattingProvider: JavaFormattingProvider
    Attributes
    protected
    Definition Classes
    MetalsLspService
  109. val javaHighlightProvider: JavaDocumentHighlightProvider
    Attributes
    protected
    Definition Classes
    MetalsLspService
  110. def javaHome: Option[String]
    Definition Classes
    MetalsLspService
  111. val languageClient: ConfiguredLanguageClient
  112. def loadFingerPrints(): Future[Unit]
    Attributes
    protected
    Definition Classes
    MetalsLspService
  113. def loadedPresentationCompilerCount(): Int
    Definition Classes
    MetalsLspService
  114. val mainBuildTargetsData: TargetData
    Attributes
    protected
    Definition Classes
    MetalsLspService
  115. def mainClassSearch(params: DebugUnresolvedMainClassParams): MainClassSearch
    Definition Classes
    MetalsLspService
  116. def maybeCompileOnDidFocus(path: io.AbsolutePath, prevBuildTarget: BuildTargetIdentifier): Future[DidFocusResult.Value]
    Attributes
    protected
    Definition Classes
    MetalsLspService
  117. def maybeImportFileAndLoad(path: io.AbsolutePath, load: () => Future[Unit]): Future[Unit]
  118. val mtags: Mtags
    Attributes
    protected
    Definition Classes
    MetalsLspService
  119. def nameOrUri: String
    Definition Classes
    Folder
  120. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  121. val newFileProvider: NewFileProvider
    Attributes
    protected
    Definition Classes
    MetalsLspService
  122. def newSymbolIndex(): OnDemandSymbolIndex
    Attributes
    protected
    Definition Classes
    MetalsLspService
  123. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  124. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  125. def onBuildTargetChanges(params: DidChangeBuildTarget): Unit
    Attributes
    protected
    Definition Classes
    FallbackMetalsLspServiceMetalsLspService
  126. def onChange(paths: Seq[io.AbsolutePath]): Future[Unit]
    Attributes
    protected
    Definition Classes
    MetalsLspService
  127. def onCreate(path: io.AbsolutePath): Unit
    Attributes
    protected
    Definition Classes
    MetalsLspService
  128. def onDelete(path: io.AbsolutePath): Future[Unit]
    Attributes
    protected
    Definition Classes
    MetalsLspService
  129. def onInitialized(): Future[Unit]
    Attributes
    protected
    Definition Classes
    FallbackMetalsLspServiceMetalsLspService
  130. def onShutdown(): Unit
    Definition Classes
    MetalsLspService
  131. def onTypeFormatting(params: DocumentOnTypeFormattingParams): CompletableFuture[java.util.List[TextEdit]]
  132. val onTypeFormattingProvider: OnTypeFormattingProvider
    Attributes
    protected
    Definition Classes
    MetalsLspService
  133. def onUserConfigUpdate(newConfig: UserConfiguration): Future[Unit]
    Definition Classes
    MetalsLspService
  134. def onWorksheetChanged(paths: Seq[io.AbsolutePath]): Future[Unit]
    Attributes
    protected
    Definition Classes
    MetalsLspService
  135. lazy val optDelegatePath: Option[io.AbsolutePath]

    A workspace folder might be a project reference for an other project.

    A workspace folder might be a project reference for an other project. In that case all its commands will be delegated to the main project's service. We keep the path to main project's root in a dedicated setting, so even before the main project is imported, this folder is known to be a reference.

    Definition Classes
    Folder
  136. def optFileSystemSemanticdbs(): Option[FileSystemSemanticdbs]
    Definition Classes
    MetalsLspService
  137. def optProjectRoot: Option[io.AbsolutePath]
    Attributes
    protected
    Definition Classes
    MetalsLspService
  138. val packageProvider: PackageProvider
    Attributes
    protected
    Definition Classes
    MetalsLspService
  139. val parseTrees: BatchedFunction[io.AbsolutePath, Unit]
    Definition Classes
    MetalsLspService
  140. def parseTreesAndPublishDiags(paths: Seq[io.AbsolutePath]): Future[Unit]
    Definition Classes
    MetalsLspService
  141. val path: io.AbsolutePath
    Definition Classes
    Folder
  142. def pause(): Unit
    Definition Classes
    MetalsLspService
  143. val pauseables: Pauseable
  144. def prepareCallHierarchy(params: CallHierarchyPrepareParams): CompletableFuture[java.util.List[CallHierarchyItem]]
  145. def prepareRename(params: TextDocumentPositionParams): CompletableFuture[org.eclipse.lsp4j.Range]
  146. val projectInfo: MetalsServiceInfo
  147. def projectReferences: List[io.AbsolutePath]
    Definition Classes
    Folder
  148. def rangeFormatting(params: DocumentRangeFormattingParams): CompletableFuture[java.util.List[TextEdit]]
  149. val rangeFormattingProvider: RangeFormattingProvider
    Attributes
    protected
    Definition Classes
    MetalsLspService
  150. val recentlyOpenedFiles: ActiveFiles
    Attributes
    protected
    Definition Classes
    MetalsLspService
  151. def references(params: ReferenceParams): CompletableFuture[java.util.List[Location]]
  152. val referencesProvider: ReferenceProvider
    Definition Classes
    MetalsLspServiceIndexProviders
  153. def referencesResult(params: ReferenceParams): Future[List[ReferencesResult]]
    Definition Classes
    MetalsLspService
  154. def register[T <: Cancelable](cancelable: T): T
    Definition Classes
    MetalsLspService
  155. def registerNiceToHaveFilePatterns(): Unit
    Attributes
    protected
    Definition Classes
    MetalsLspService
  156. def rename(params: RenameParams): CompletableFuture[WorkspaceEdit]
  157. val renameProvider: RenameProvider
    Attributes
    protected
    Definition Classes
    MetalsLspService
  158. implicit val reports: StdReportContext
    Definition Classes
    MetalsLspService
  159. def resetNotifications(): Future[Unit]
    Definition Classes
    MetalsLspService
  160. def resetService(): Unit
    Definition Classes
    MetalsLspServiceIndexProviders
  161. def restartCompiler(): Future[Unit]
    Definition Classes
    MetalsLspService
  162. def runScalafix(uri: String): Future[ApplyWorkspaceEditResponse]
    Definition Classes
    MetalsLspService
  163. def runScalafixRules(uri: String, rules: List[String]): Future[ApplyWorkspaceEditResponse]
    Definition Classes
    MetalsLspService
  164. val savedFiles: ActiveFiles
    Attributes
    protected
    Definition Classes
    MetalsLspService
  165. val scalaCli: ScalaCliServers
    Definition Classes
    MetalsLspService
  166. val scalaVersionSelector: ScalaVersionSelector
    Definition Classes
    MetalsLspServiceIndexProviders
  167. val scalafixProvider: ScalafixProvider
    Attributes
    protected
    Definition Classes
    MetalsLspService
  168. def selectionRange(params: SelectionRangeParams): CompletableFuture[java.util.List[SelectionRange]]
  169. val semanticDBIndexer: SemanticdbIndexer
    Definition Classes
    MetalsLspServiceIndexProviders
  170. def semanticTokensFull(params: SemanticTokensParams): CompletableFuture[SemanticTokens]

    Requesting semantic tokens for a whole file in order to highlight

    Requesting semantic tokens for a whole file in order to highlight

    Definition Classes
    MetalsLspServiceTextDocumentService
  171. val semanticdbs: Semanticdbs
    Attributes
    protected
    Definition Classes
    FallbackMetalsLspServiceMetalsLspService
  172. def setUserConfig(newConfig: UserConfiguration): UserConfiguration
    Definition Classes
    MetalsLspService
  173. val sh: ScheduledExecutorService
  174. def signatureHelp(params: TextDocumentPositionParams): CompletableFuture[SignatureHelp]
  175. val sourceMapper: SourceMapper
    Definition Classes
    MetalsLspServiceIndexProviders
  176. val stacktraceAnalyzer: StacktraceAnalyzer
    Definition Classes
    MetalsLspService
  177. def startDebugProvider(params: DebugSessionParams): Future[DebugSession]
    Definition Classes
    MetalsLspService
  178. def startScalaCli(path: io.AbsolutePath): Future[Unit]
    Definition Classes
    MetalsLspService
  179. def startTestSuite(target: BuildTarget, params: ScalaTestSuitesDebugRequest): Future[DebugSession]
    Definition Classes
    MetalsLspService
  180. val statusBar: StatusBar
  181. def stopScalaCli(): Future[Unit]
    Definition Classes
    MetalsLspService
  182. def superMethodHierarchy(textDocumentPositionParams: TextDocumentPositionParams): CompletableFuture[AnyRef]
    Definition Classes
    MetalsLspService
  183. val supermethods: Supermethods
    Attributes
    protected
    Definition Classes
    MetalsLspService
  184. def supportsBuildTarget(target: BuildTargetIdentifier): Option[BuildTarget]
    Definition Classes
    MetalsLspService
  185. val symbolDocs: Docstrings
    Definition Classes
    MetalsLspServiceIndexProviders
  186. val symbolHierarchyOps: SymbolHierarchyOps
    Attributes
    protected
    Definition Classes
    MetalsLspService
  187. val symbolSearch: MetalsSymbolSearch
    Attributes
    protected
    Definition Classes
    MetalsLspService
  188. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  189. val tables: Tables
    Definition Classes
    MetalsLspServiceIndexProviders
  190. def testClassSearch(params: DebugUnresolvedTestClassParams): TestClassSearch
    Definition Classes
    MetalsLspService
  191. val testProvider: TestSuitesProvider
    Attributes
    protected
    Definition Classes
    MetalsLspService
  192. val timerProvider: TimerProvider
  193. def toString(): String
    Definition Classes
    AnyRef → Any
  194. val trees: Trees
    Attributes
    protected
    Definition Classes
    MetalsLspService
  195. def typeDefinition(position: TextDocumentPositionParams): CompletableFuture[java.util.List[Location]]
  196. def unpause(): Unit
    Definition Classes
    MetalsLspService
  197. var userConfig: UserConfiguration
    Definition Classes
    MetalsLspServiceIndexProviders
  198. val userConfigPromise: Promise[Unit]
    Attributes
    protected
    Definition Classes
    MetalsLspService
  199. val visibleName: Option[String]
    Definition Classes
    Folder
  200. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  201. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  202. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  203. def warnings: Warnings
    Attributes
    protected
    Definition Classes
    MetalsLspService
  204. val wasInitialized: AtomicBoolean
    Definition Classes
    MetalsLspService
  205. def willRenameFile(oldPath: io.AbsolutePath, newPath: io.AbsolutePath): Future[WorkspaceEdit]
    Definition Classes
    MetalsLspService
  206. val workDoneProgress: WorkDoneProgress
  207. val worksheetProvider: WorksheetProvider
    Definition Classes
    MetalsLspService
  208. def workspaceSymbol(query: String): Seq[SymbolInformation]
    Definition Classes
    MetalsLspService
  209. def workspaceSymbol(params: WorkspaceSymbolParams, token: CancelToken): Future[List[SymbolInformation]]
    Definition Classes
    MetalsLspService
  210. val workspaceSymbols: WorkspaceSymbolProvider
    Definition Classes
    MetalsLspServiceIndexProviders

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 MetalsLspService

Inherited from IndexProviders

Inherited from TextDocumentService

Inherited from Cancelable

Inherited from Folder

Inherited from AnyRef

Inherited from Any

Ungrouped