All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ch.epfl.scala.debugadapter.internal.CompletionsProvider.scala Maven / Gradle / Ivy

The newest version!
package ch.epfl.scala.debugadapter.internal

import com.microsoft.java.debug.core.adapter.ICompletionsProvider
import com.microsoft.java.debug.core.protocol.Types
import com.sun.jdi.StackFrame

import java.util

object CompletionsProvider extends ICompletionsProvider {
  override def codeComplete(
      frame: StackFrame,
      snippet: String,
      line: Int,
      column: Int
  ): util.List[Types.CompletionItem] = util.Collections.emptyList()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy