language_server-protocol 3.17.0.2 → 3.17.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8d0ef69a63029bb6549f0f443e2846b9f87c73f2be7bc6f77f55c1f3819c7a91
4
- data.tar.gz: 8e37d30d98a0eeebe04e64facf0f8ec0279682493a24da9a6640e465c56db30e
3
+ metadata.gz: 3bb498601df4b9e24a703a97918393b6a12cf0b697c640ac50f83fcecd5e8e97
4
+ data.tar.gz: a2ef52757d6880d99e517b3dd3f62f54e6eb6b3bae7fe13c77f674a5dc052ce9
5
5
  SHA512:
6
- metadata.gz: 6fa49ebff9f6bb27a37505a95bd1b93eb9d4bc019fc30fbe343fb4662f3fbde870cbf78a1853e4e4ca604d9bd0860508978a0ee575c0d810da8047e77573671a
7
- data.tar.gz: 7b3da282738febb911ab3f2f9a8d31e4ae4e4fc9249a80c1b702cd0aff75d67a047ed0963bfdcb9f91135e7ea650b1765a231c29c328bfb937a3e307a0a4e97d
6
+ metadata.gz: 483933506ef32d8c557e42cba35e7e132d077710d46f8a7e2a06a776617af7bd36ce6146cd89e2b6d5512e4c1fdcbec95ccf79fe6ff8596052f6d7ffc1f8d429
7
+ data.tar.gz: e5b9cfe211598257887e08d2385c8d91e8dc0dfc54b08a6d816bff4fe9489f65b12d571cb667b67e4ba90135e7eb27459de335e2a748ca70cd7bf314586ed178
@@ -11,7 +11,7 @@ module LanguageServer
11
11
  #
12
12
  COMMENT = 'comment'
13
13
  #
14
- # Folding range for a imports or includes
14
+ # Folding range for imports or includes
15
15
  #
16
16
  IMPORTS = 'imports'
17
17
  #
@@ -8,7 +8,7 @@ module LanguageServer
8
8
  #
9
9
  module PositionEncodingKind
10
10
  #
11
- # Character offsets count UTF-8 code units.
11
+ # Character offsets count UTF-8 code units (e.g bytes).
12
12
  #
13
13
  UTF8 = 'utf-8'
14
14
  #
@@ -18,7 +18,7 @@ module LanguageServer
18
18
  #
19
19
  # Documents are synced by sending the full content on open.
20
20
  # After that only incremental updates to the document are
21
- # send.
21
+ # sent.
22
22
  #
23
23
  INCREMENTAL = 2
24
24
  end
@@ -33,7 +33,6 @@ module LanguageServer
33
33
  autoload :SymbolTag, "language_server/protocol/constant/symbol_tag"
34
34
  autoload :TextDocumentSaveReason, "language_server/protocol/constant/text_document_save_reason"
35
35
  autoload :TextDocumentSyncKind, "language_server/protocol/constant/text_document_sync_kind"
36
- autoload :TextDocumentSyncKind, "language_server/protocol/constant/text_document_sync_kind"
37
36
  autoload :TokenFormat, "language_server/protocol/constant/token_format"
38
37
  autoload :UniquenessLevel, "language_server/protocol/constant/uniqueness_level"
39
38
  autoload :WatchKind, "language_server/protocol/constant/watch_kind"
@@ -70,7 +69,6 @@ module LanguageServer
70
69
  require "language_server/protocol/constant/symbol_tag"
71
70
  require "language_server/protocol/constant/text_document_save_reason"
72
71
  require "language_server/protocol/constant/text_document_sync_kind"
73
- require "language_server/protocol/constant/text_document_sync_kind"
74
72
  require "language_server/protocol/constant/token_format"
75
73
  require "language_server/protocol/constant/uniqueness_level"
76
74
  require "language_server/protocol/constant/watch_kind"
@@ -99,7 +99,7 @@ module LanguageServer
99
99
  end
100
100
 
101
101
  #
102
- # A data entry field that is preserved on a inlay hint between
102
+ # A data entry field that is preserved on an inlay hint between
103
103
  # a `textDocument/inlayHint` and a `inlayHint/resolve` request.
104
104
  #
105
105
  # @return [LSPAny]
@@ -23,7 +23,7 @@ module LanguageServer
23
23
  end
24
24
 
25
25
  #
26
- # Indicates which properties a client can resolve lazily on a inlay
26
+ # Indicates which properties a client can resolve lazily on an inlay
27
27
  # hint.
28
28
  #
29
29
  # @return [{ properties: string[]; }]
@@ -11,7 +11,7 @@ module LanguageServer
11
11
  end
12
12
 
13
13
  #
14
- # Whether implementation supports dynamic registration.
14
+ # Whether the implementation supports dynamic registration.
15
15
  # If this is set to `true` the client supports the new
16
16
  # `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
17
17
  # return value for the corresponding server capability as well.
@@ -43,7 +43,7 @@ module LanguageServer
43
43
  end
44
44
 
45
45
  #
46
- # Whether th client honors the change annotations in
46
+ # Whether the client honors the change annotations in
47
47
  # text edits and resource operations returned via the
48
48
  # rename request's workspace edit by for example presenting
49
49
  # the workspace edit in the user interface and asking
@@ -2,7 +2,7 @@ module LanguageServer
2
2
  module Protocol
3
3
  module Interface
4
4
  #
5
- # Params to show a document.
5
+ # Params to show a resource.
6
6
  #
7
7
  class ShowDocumentParams
8
8
  def initialize(uri:, external: nil, take_focus: nil, selection: nil)
@@ -17,7 +17,7 @@ module LanguageServer
17
17
  end
18
18
 
19
19
  #
20
- # The document uri to show.
20
+ # The uri to show.
21
21
  #
22
22
  # @return [string]
23
23
  def uri
@@ -26,7 +26,7 @@ module LanguageServer
26
26
 
27
27
  #
28
28
  # Indicates to show the resource in an external program.
29
- # To show for example `https://code.visualstudio.com/`
29
+ # To show, for example, `https://code.visualstudio.com/`
30
30
  # in the default WEB browser set `external` to `true`.
31
31
  #
32
32
  # @return [boolean]
@@ -58,7 +58,7 @@ module LanguageServer
58
58
  # the range usually spans more then the actual symbol's name and does
59
59
  # normally include things like visibility modifiers.
60
60
  #
61
- # The range doesn't have to denote a node range in the sense of a abstract
61
+ # The range doesn't have to denote a node range in the sense of an abstract
62
62
  # syntax tree. It can therefore not be used to re-construct a hierarchy of
63
63
  # the symbols.
64
64
  #
@@ -1,5 +1,5 @@
1
1
  module LanguageServer
2
2
  module Protocol
3
- VERSION = "3.17.0.2"
3
+ VERSION = "3.17.0.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: language_server-protocol
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.17.0.2
4
+ version: 3.17.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fumiaki MATSUSHIMA
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-11-28 00:00:00.000000000 Z
11
+ date: 2023-01-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -479,7 +479,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
479
479
  - !ruby/object:Gem::Version
480
480
  version: '0'
481
481
  requirements: []
482
- rubygems_version: 3.3.26
482
+ rubygems_version: 3.4.5
483
483
  signing_key:
484
484
  specification_version: 4
485
485
  summary: A Language Server Protocol SDK