SignatureHelp

langoustine.lsp.structures.SignatureHelp
See theSignatureHelp companion object
case class SignatureHelp(signatures: Vector[SignatureInformation], activeSignature: Opt[uinteger], activeParameter: Opt[uinteger])

Signature help represents the signature of something callable. There can be multiple signature but only one active and only one active parameter.

Value parameters

activeParameter

The active parameter of the active signature. If omitted or the value lies outside the range of signatures[activeSignature].parameters defaults to 0 if the active signature has parameters. If the active signature has no parameters it is ignored. In future version of the protocol this property might become mandatory to better express the active parameter if the active signature does have any.

activeSignature

The active signature. If omitted or the value lies outside the range of signatures the value defaults to zero or is ignored if the SignatureHelp has no signatures. Whenever possible implementors should make an active decision about the active signature and shouldn't rely on a default value. In future version of the protocol this property might become mandatory to better express this.

signatures

One or more signatures.

Attributes

Companion
object
Source
structures.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product