Sha256: 93a85c1eb5cf909ae2885ee97e9a942cff1914110e7139e10d9f6ecf7ac5d553

Contents?: true

Size: 709 Bytes

Versions: 1

Compression:

Stored size: 709 Bytes

Contents

# Arguments for ‘completions’ request.
class DAP::CompletionsArguments < DAP::Base
  # Returns completions in the scope of this stack frame. If not specified, the completions are returned for the global scope.
  property :frameId, required: false, as: 'number'

  # One or more source lines. Typically this is the text a user has typed into the debug console before he asked for completion.
  property :text, as: 'string'

  # The character position for which to determine the completion proposals.
  property :column, as: 'number'

  # An optional line for which to determine the completion proposals. If missing the first line of the text is assumed.
  property :line, required: false, as: 'number'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruby-dap-0.1.3 lib/dap/completions_arguments.rb