steep 1.5.0.pre.1 → 1.5.0.pre.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/Gemfile.lock +1 -1
- data/lib/steep/services/signature_help_provider.rb +1 -1
- data/lib/steep/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c6cfc6dc27ad9f1d484bf734c1633319866b9c6f2593237adace2f17562dfe4b
|
|
4
|
+
data.tar.gz: 05af58e6372461a82e0cfe3984c9694b51bb706236db7a64302e772f476efd9a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b3b5f11e9a138fceb039c2fb7970f4fbb0b27344114427267d8d74dfab0050f299a75ee8ff6a7051ef93c353dd73f7eac74d9994f998a07360a6743e7e76a8cf
|
|
7
|
+
data.tar.gz: d75bf5d4329e11ff68f0d61421b3c9c4cf24406959b084b4042e03210477f53469ae02bfd351834c276c9d46c9237bd4a3054a8c5a8b460e9be6f617a64f034b
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## master
|
|
4
4
|
|
|
5
|
+
## 1.5.0.pre.2 (2023-07-05)
|
|
6
|
+
|
|
7
|
+
### Language server
|
|
8
|
+
|
|
9
|
+
* Fix signature help is not shown for the optional chaining (&.) ([#832](https://github.com/soutaro/steep/pull/832))
|
|
10
|
+
|
|
5
11
|
## 1.5.0.pre.1 (2023-07-05)
|
|
6
12
|
|
|
7
13
|
### Type checker core
|
|
@@ -30,7 +36,6 @@
|
|
|
30
36
|
|
|
31
37
|
### Language server
|
|
32
38
|
|
|
33
|
-
* Fix signature help is not shown for the optional chaining (&.) ([#832](https://github.com/soutaro/steep/pull/832))
|
|
34
39
|
* Completion in annotations ([#818](https://github.com/soutaro/steep/pull/818))
|
|
35
40
|
* Implement *go to type definition* ([#784](https://github.com/soutaro/steep/pull/784))
|
|
36
41
|
|
data/Gemfile.lock
CHANGED
|
@@ -30,7 +30,7 @@ module Steep
|
|
|
30
30
|
|
|
31
31
|
node or return
|
|
32
32
|
|
|
33
|
-
if node.type == :send
|
|
33
|
+
if node.type == :send || node.type == :csend
|
|
34
34
|
pos = buffer.loc_to_pos([line, column])
|
|
35
35
|
begin_loc = (_ = node.loc).begin #: Parser::Source::Range?
|
|
36
36
|
end_loc = (_ = node.loc).end #: Parser::Source::Range?
|
data/lib/steep/version.rb
CHANGED