struct LSP::SignatureInformation
- LSP::SignatureInformation
- Struct
- Value
- Object
Overview
Represents the signature of something callable. A signature can have a label, like a function-name, a doc-comment, and a set of parameters.
Included Modules
Defined in:
requests/language_features/signature_help.crConstructors
Instance Method Summary
-
#documentation : String | MarkupContent | Nil
The human-readable doc-comment of this signature.
-
#documentation=(documentation : String | MarkupContent | Nil)
The human-readable doc-comment of this signature.
-
#label : String
The label of this signature.
-
#label=(label : String)
The label of this signature.
-
#parameters : Array(ParameterInformation)?
The parameters of this signature.
-
#parameters=(parameters : Array(ParameterInformation)?)
The parameters of this signature.
Constructor Detail
Instance Method Detail
def documentation : String | MarkupContent | Nil
#
The human-readable doc-comment of this signature. Will be shown in the UI but can be omitted.
def documentation=(documentation : String | MarkupContent | Nil)
#
The human-readable doc-comment of this signature. Will be shown in the UI but can be omitted.