Sha256: 58067182804bebd72262f0615c6d4c53a4f1904371d0c02f2cf7ae7688bf894e

Contents?: true

Size: 610 Bytes

Versions: 3

Compression:

Stored size: 610 Bytes

Contents

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

  # 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

  # The character position for which to determine the completion proposals.
  property :column

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby-dap-0.1.2 lib/dap/completions_arguments.rb
ruby-dap-0.1.1 lib/dap/completions_arguments.rb
ruby-dap-0.1.0 lib/dap/completions_arguments.rb