View source
typedef CompletionsArguments
package vscode.debugProtocol
import vscode.debugProtocol.DebugProtocol
Arguments for 'completions' request.
Fields
text:String
One or more source lines. Typically this is the text a user has typed into the debug console before he asked for completion.
optionalline:Null<Int>
An optional line for which to determine the completion proposals. If missing the first line of the text is assumed.
optionalframeId:Null<Int>
Returns completions in the scope of this stack frame. If not specified, the completions are returned for the global scope.