File: workspace_folders_server_capabilities.rb

package info (click to toggle)
ruby-language-server-protocol 3.17.0.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,636 kB
  • sloc: ruby: 10,741; makefile: 4
file content (48 lines) | stat: -rw-r--r-- 1,274 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
module LanguageServer
  module Protocol
    module Interface
      class WorkspaceFoldersServerCapabilities
        def initialize(supported: nil, change_notifications: nil)
          @attributes = {}

          @attributes[:supported] = supported if supported
          @attributes[:changeNotifications] = change_notifications if change_notifications

          @attributes.freeze
        end

        #
        # The server has support for workspace folders
        #
        # @return [boolean]
        def supported
          attributes.fetch(:supported)
        end

        #
        # Whether the server wants to receive workspace folder
        # change notifications.
        #
        # If a string is provided, the string is treated as an ID
        # under which the notification is registered on the client
        # side. The ID can be used to unregister for these events
        # using the `client/unregisterCapability` request.
        #
        # @return [string | boolean]
        def change_notifications
          attributes.fetch(:changeNotifications)
        end

        attr_reader :attributes

        def to_hash
          attributes
        end

        def to_json(*args)
          to_hash.to_json(*args)
        end
      end
    end
  end
end