steep 0.40.0 → 0.44.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (169) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +38 -0
  3. data/Gemfile +1 -0
  4. data/bin/output_rebaseline.rb +15 -30
  5. data/bin/output_test.rb +23 -57
  6. data/lib/steep.rb +89 -15
  7. data/lib/steep/annotation_parser.rb +10 -2
  8. data/lib/steep/ast/types/class.rb +4 -0
  9. data/lib/steep/cli.rb +31 -6
  10. data/lib/steep/diagnostic/ruby.rb +13 -8
  11. data/lib/steep/diagnostic/signature.rb +152 -2
  12. data/lib/steep/drivers/annotations.rb +18 -36
  13. data/lib/steep/drivers/check.rb +140 -31
  14. data/lib/steep/drivers/diagnostic_printer.rb +20 -11
  15. data/lib/steep/drivers/langserver.rb +4 -8
  16. data/lib/steep/drivers/print_project.rb +10 -9
  17. data/lib/steep/drivers/stats.rb +135 -119
  18. data/lib/steep/drivers/utils/driver_helper.rb +35 -0
  19. data/lib/steep/drivers/utils/jobs_count.rb +9 -0
  20. data/lib/steep/drivers/validate.rb +29 -18
  21. data/lib/steep/drivers/watch.rb +55 -49
  22. data/lib/steep/drivers/worker.rb +11 -8
  23. data/lib/steep/expectations.rb +159 -0
  24. data/lib/steep/index/signature_symbol_provider.rb +23 -1
  25. data/lib/steep/index/source_index.rb +55 -5
  26. data/lib/steep/interface/block.rb +4 -0
  27. data/lib/steep/project.rb +0 -30
  28. data/lib/steep/project/dsl.rb +5 -3
  29. data/lib/steep/project/pattern.rb +56 -0
  30. data/lib/steep/project/target.rb +11 -227
  31. data/lib/steep/server/base_worker.rb +1 -3
  32. data/lib/steep/server/change_buffer.rb +63 -0
  33. data/lib/steep/server/interaction_worker.rb +72 -57
  34. data/lib/steep/server/master.rb +652 -234
  35. data/lib/steep/server/type_check_worker.rb +304 -0
  36. data/lib/steep/server/worker_process.rb +16 -11
  37. data/lib/steep/{project → services}/completion_provider.rb +5 -5
  38. data/lib/steep/services/content_change.rb +61 -0
  39. data/lib/steep/services/file_loader.rb +48 -0
  40. data/lib/steep/services/goto_service.rb +321 -0
  41. data/lib/steep/{project → services}/hover_content.rb +19 -20
  42. data/lib/steep/services/path_assignment.rb +27 -0
  43. data/lib/steep/services/signature_service.rb +403 -0
  44. data/lib/steep/services/stats_calculator.rb +69 -0
  45. data/lib/steep/services/type_check_service.rb +413 -0
  46. data/lib/steep/signature/validator.rb +187 -85
  47. data/lib/steep/source.rb +21 -18
  48. data/lib/steep/subtyping/check.rb +246 -45
  49. data/lib/steep/subtyping/constraints.rb +4 -4
  50. data/lib/steep/type_construction.rb +428 -193
  51. data/lib/steep/type_inference/block_params.rb +1 -1
  52. data/lib/steep/type_inference/context.rb +22 -0
  53. data/lib/steep/type_inference/local_variable_type_env.rb +26 -12
  54. data/lib/steep/type_inference/logic.rb +1 -1
  55. data/lib/steep/type_inference/logic_type_interpreter.rb +4 -4
  56. data/lib/steep/type_inference/type_env.rb +43 -17
  57. data/lib/steep/version.rb +1 -1
  58. data/smoke/alias/test_expectations.yml +96 -0
  59. data/smoke/and/test_expectations.yml +31 -0
  60. data/smoke/array/test_expectations.yml +103 -0
  61. data/smoke/block/test_expectations.yml +125 -0
  62. data/smoke/case/test_expectations.yml +47 -0
  63. data/smoke/class/test_expectations.yml +120 -0
  64. data/smoke/const/test_expectations.yml +129 -0
  65. data/smoke/diagnostics-rbs-duplicated/test_expectations.yml +13 -0
  66. data/smoke/diagnostics-rbs/Steepfile +7 -4
  67. data/smoke/diagnostics-rbs/test_expectations.yml +231 -0
  68. data/smoke/diagnostics-rbs/unknown-type-name-2.rbs +5 -0
  69. data/smoke/{broken → diagnostics-ruby-unsat}/Steepfile +0 -0
  70. data/smoke/diagnostics-ruby-unsat/a.rbs +3 -0
  71. data/smoke/diagnostics-ruby-unsat/test_expectations.yml +27 -0
  72. data/smoke/{diagnostics → diagnostics-ruby-unsat}/unsatisfiable_constraint.rb +0 -1
  73. data/smoke/diagnostics/a.rbs +0 -4
  74. data/smoke/diagnostics/test_expectations.yml +451 -0
  75. data/smoke/dstr/test_expectations.yml +13 -0
  76. data/smoke/ensure/test_expectations.yml +62 -0
  77. data/smoke/enumerator/test_expectations.yml +135 -0
  78. data/smoke/extension/f.rb +2 -0
  79. data/smoke/extension/f.rbs +3 -0
  80. data/smoke/extension/test_expectations.yml +73 -0
  81. data/smoke/hash/test_expectations.yml +81 -0
  82. data/smoke/hello/test_expectations.yml +25 -0
  83. data/smoke/if/test_expectations.yml +34 -0
  84. data/smoke/implements/b.rb +13 -0
  85. data/smoke/implements/b.rbs +12 -0
  86. data/smoke/implements/test_expectations.yml +23 -0
  87. data/smoke/initialize/test_expectations.yml +1 -0
  88. data/smoke/integer/test_expectations.yml +101 -0
  89. data/smoke/interface/test_expectations.yml +23 -0
  90. data/smoke/kwbegin/test_expectations.yml +17 -0
  91. data/smoke/lambda/test_expectations.yml +39 -0
  92. data/smoke/literal/test_expectations.yml +106 -0
  93. data/smoke/map/test_expectations.yml +1 -0
  94. data/smoke/method/test_expectations.yml +90 -0
  95. data/smoke/module/test_expectations.yml +75 -0
  96. data/smoke/regexp/test_expectations.yml +615 -0
  97. data/smoke/regression/issue_328.rb +1 -0
  98. data/smoke/regression/issue_328.rbs +0 -0
  99. data/smoke/regression/issue_332.rb +11 -0
  100. data/smoke/regression/issue_332.rbs +19 -0
  101. data/smoke/regression/issue_372.rb +8 -0
  102. data/smoke/regression/issue_372.rbs +4 -0
  103. data/smoke/regression/masgn.rb +4 -0
  104. data/smoke/regression/test_expectations.yml +60 -0
  105. data/smoke/regression/thread.rb +7 -0
  106. data/smoke/rescue/test_expectations.yml +79 -0
  107. data/smoke/self/test_expectations.yml +23 -0
  108. data/smoke/skip/test_expectations.yml +23 -0
  109. data/smoke/stdout/test_expectations.yml +1 -0
  110. data/smoke/super/test_expectations.yml +69 -0
  111. data/smoke/toplevel/test_expectations.yml +15 -0
  112. data/smoke/tsort/Steepfile +2 -0
  113. data/smoke/tsort/test_expectations.yml +63 -0
  114. data/smoke/type_case/test_expectations.yml +48 -0
  115. data/smoke/unexpected/Steepfile +5 -0
  116. data/smoke/unexpected/test_expectations.yml +25 -0
  117. data/smoke/unexpected/unexpected.rb +1 -0
  118. data/smoke/unexpected/unexpected.rbs +3 -0
  119. data/smoke/yield/test_expectations.yml +68 -0
  120. data/steep.gemspec +4 -3
  121. metadata +127 -80
  122. data/lib/steep/project/file_loader.rb +0 -68
  123. data/lib/steep/project/signature_file.rb +0 -39
  124. data/lib/steep/project/source_file.rb +0 -129
  125. data/lib/steep/project/stats_calculator.rb +0 -80
  126. data/lib/steep/server/code_worker.rb +0 -150
  127. data/lib/steep/server/signature_worker.rb +0 -157
  128. data/lib/steep/server/utils.rb +0 -69
  129. data/smoke/alias/test.yaml +0 -73
  130. data/smoke/and/test.yaml +0 -24
  131. data/smoke/array/test.yaml +0 -80
  132. data/smoke/block/test.yaml +0 -96
  133. data/smoke/broken/broken.rb +0 -0
  134. data/smoke/broken/broken.rbs +0 -0
  135. data/smoke/broken/test.yaml +0 -6
  136. data/smoke/case/test.yaml +0 -36
  137. data/smoke/class/test.yaml +0 -89
  138. data/smoke/const/test.yaml +0 -96
  139. data/smoke/diagnostics-rbs-duplicated/test.yaml +0 -10
  140. data/smoke/diagnostics-rbs/test.yaml +0 -142
  141. data/smoke/diagnostics/test.yaml +0 -333
  142. data/smoke/dstr/test.yaml +0 -10
  143. data/smoke/ensure/test.yaml +0 -47
  144. data/smoke/enumerator/test.yaml +0 -100
  145. data/smoke/extension/test.yaml +0 -50
  146. data/smoke/hash/test.yaml +0 -62
  147. data/smoke/hello/test.yaml +0 -18
  148. data/smoke/if/test.yaml +0 -27
  149. data/smoke/implements/test.yaml +0 -16
  150. data/smoke/initialize/test.yaml +0 -4
  151. data/smoke/integer/test.yaml +0 -66
  152. data/smoke/interface/test.yaml +0 -16
  153. data/smoke/kwbegin/test.yaml +0 -14
  154. data/smoke/lambda/test.yaml +0 -28
  155. data/smoke/literal/test.yaml +0 -79
  156. data/smoke/map/test.yaml +0 -4
  157. data/smoke/method/test.yaml +0 -71
  158. data/smoke/module/test.yaml +0 -51
  159. data/smoke/regexp/test.yaml +0 -372
  160. data/smoke/regression/test.yaml +0 -38
  161. data/smoke/rescue/test.yaml +0 -60
  162. data/smoke/self/test.yaml +0 -16
  163. data/smoke/skip/test.yaml +0 -16
  164. data/smoke/stdout/test.yaml +0 -4
  165. data/smoke/super/test.yaml +0 -52
  166. data/smoke/toplevel/test.yaml +0 -12
  167. data/smoke/tsort/test.yaml +0 -32
  168. data/smoke/type_case/test.yaml +0 -33
  169. data/smoke/yield/test.yaml +0 -49
@@ -0,0 +1,13 @@
1
+ ---
2
+ - file: a.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 5
7
+ character: 15
8
+ end:
9
+ line: 5
10
+ character: 18
11
+ severity: ERROR
12
+ message: Type `::Integer` does not have method `foo`
13
+ code: Ruby::NoMethod
@@ -0,0 +1,62 @@
1
+ ---
2
+ - file: a.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 4
7
+ character: 0
8
+ end:
9
+ line: 9
10
+ character: 7
11
+ severity: ERROR
12
+ message: |-
13
+ Cannot assign a value of type `::String` to a variable of type `::Integer`
14
+ ::String <: ::Integer
15
+ ::Object <: ::Integer
16
+ ::BasicObject <: ::Integer
17
+ code: Ruby::IncompatibleAssignment
18
+ - range:
19
+ start:
20
+ line: 7
21
+ character: 6
22
+ end:
23
+ line: 7
24
+ character: 14
25
+ severity: ERROR
26
+ message: |-
27
+ Cannot assign a value of type `::Symbol` to a variable of type `::Integer`
28
+ ::Symbol <: ::Integer
29
+ ::Object <: ::Integer
30
+ ::BasicObject <: ::Integer
31
+ code: Ruby::IncompatibleAssignment
32
+ - range:
33
+ start:
34
+ line: 13
35
+ character: 0
36
+ end:
37
+ line: 18
38
+ character: 3
39
+ severity: ERROR
40
+ message: |-
41
+ Cannot allow method body have type `::Integer` because declared as type `::String`
42
+ ::Integer <: ::String
43
+ ::Numeric <: ::String
44
+ ::Object <: ::String
45
+ ::BasicObject <: ::String
46
+ code: Ruby::MethodBodyTypeMismatch
47
+ - range:
48
+ start:
49
+ line: 16
50
+ character: 2
51
+ end:
52
+ line: 16
53
+ character: 9
54
+ severity: ERROR
55
+ message: |-
56
+ Cannot find compatible overloading of method `+` of type `::Integer`
57
+ Method types:
58
+ def +: (::Integer) -> ::Integer
59
+ | (::Float) -> ::Float
60
+ | (::Rational) -> ::Rational
61
+ | (::Complex) -> ::Complex
62
+ code: Ruby::UnresolvedOverloading
@@ -0,0 +1,135 @@
1
+ ---
2
+ - file: a.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 5
7
+ character: 0
8
+ end:
9
+ line: 8
10
+ character: 3
11
+ severity: ERROR
12
+ message: |-
13
+ Cannot assign a value of type `::String` to a variable of type `::Hash[::Symbol, ::String]`
14
+ ::String <: ::Hash[::Symbol, ::String]
15
+ ::Object <: ::Hash[::Symbol, ::String]
16
+ ::BasicObject <: ::Hash[::Symbol, ::String]
17
+ code: Ruby::IncompatibleAssignment
18
+ - range:
19
+ start:
20
+ line: 6
21
+ character: 2
22
+ end:
23
+ line: 6
24
+ character: 10
25
+ severity: ERROR
26
+ message: |-
27
+ Cannot assign a value of type `::Integer` to a variable of type `::Hash[::Symbol, ::String]`
28
+ ::Integer <: ::Hash[::Symbol, ::String]
29
+ ::Numeric <: ::Hash[::Symbol, ::String]
30
+ ::Object <: ::Hash[::Symbol, ::String]
31
+ ::BasicObject <: ::Hash[::Symbol, ::String]
32
+ code: Ruby::IncompatibleAssignment
33
+ - range:
34
+ start:
35
+ line: 7
36
+ character: 2
37
+ end:
38
+ line: 7
39
+ character: 10
40
+ severity: ERROR
41
+ message: |-
42
+ Cannot assign a value of type `::String` to a variable of type `::Hash[::Symbol, ::String]`
43
+ ::String <: ::Hash[::Symbol, ::String]
44
+ ::Object <: ::Hash[::Symbol, ::String]
45
+ ::BasicObject <: ::Hash[::Symbol, ::String]
46
+ code: Ruby::IncompatibleAssignment
47
+ - range:
48
+ start:
49
+ line: 10
50
+ character: 0
51
+ end:
52
+ line: 13
53
+ character: 3
54
+ severity: ERROR
55
+ message: |-
56
+ Cannot assign a value of type `::Array[::Integer]` to a variable of type `::Hash[::Symbol, ::String]`
57
+ ::Array[::Integer] <: ::Hash[::Symbol, ::String]
58
+ ::Object <: ::Hash[::Symbol, ::String]
59
+ ::BasicObject <: ::Hash[::Symbol, ::String]
60
+ code: Ruby::IncompatibleAssignment
61
+ - range:
62
+ start:
63
+ line: 11
64
+ character: 2
65
+ end:
66
+ line: 11
67
+ character: 10
68
+ severity: ERROR
69
+ message: |-
70
+ Cannot assign a value of type `::Integer` to a variable of type `::Hash[::Symbol, ::String]`
71
+ ::Integer <: ::Hash[::Symbol, ::String]
72
+ ::Numeric <: ::Hash[::Symbol, ::String]
73
+ ::Object <: ::Hash[::Symbol, ::String]
74
+ ::BasicObject <: ::Hash[::Symbol, ::String]
75
+ code: Ruby::IncompatibleAssignment
76
+ - range:
77
+ start:
78
+ line: 12
79
+ character: 2
80
+ end:
81
+ line: 12
82
+ character: 10
83
+ severity: ERROR
84
+ message: |-
85
+ Cannot assign a value of type `::Integer` to a variable of type `::Hash[::Symbol, ::String]`
86
+ ::Integer <: ::Hash[::Symbol, ::String]
87
+ ::Numeric <: ::Hash[::Symbol, ::String]
88
+ ::Object <: ::Hash[::Symbol, ::String]
89
+ ::BasicObject <: ::Hash[::Symbol, ::String]
90
+ code: Ruby::IncompatibleAssignment
91
+ - file: b.rb
92
+ diagnostics:
93
+ - range:
94
+ start:
95
+ line: 6
96
+ character: 4
97
+ end:
98
+ line: 9
99
+ character: 3
100
+ severity: ERROR
101
+ message: |-
102
+ Cannot find compatible overloading of method `with_object` of type `::Enumerator[::Integer, ::Array[::Integer]]`
103
+ Method types:
104
+ def with_object: [U] (U) { (::Integer, U) -> untyped } -> U
105
+ | [U] (U) -> ::Enumerator[[::Integer, U], ::Array[::Integer]]
106
+ code: Ruby::UnresolvedOverloading
107
+ - range:
108
+ start:
109
+ line: 11
110
+ character: 0
111
+ end:
112
+ line: 14
113
+ character: 3
114
+ severity: ERROR
115
+ message: |-
116
+ Cannot assign a value of type `::Array[::String]` to a variable of type `::Array[::Integer]`
117
+ ::Array[::String] <: ::Array[::Integer]
118
+ ::String <: ::Integer
119
+ ::Object <: ::Integer
120
+ ::BasicObject <: ::Integer
121
+ code: Ruby::IncompatibleAssignment
122
+ - range:
123
+ start:
124
+ line: 17
125
+ character: 0
126
+ end:
127
+ line: 19
128
+ character: 3
129
+ severity: ERROR
130
+ message: |-
131
+ Cannot assign a value of type `::Array[untyped]` to a variable of type `::String`
132
+ ::Array[untyped] <: ::String
133
+ ::Object <: ::String
134
+ ::BasicObject <: ::String
135
+ code: Ruby::IncompatibleAssignment
@@ -0,0 +1,2 @@
1
+ array = [1,2,3]
2
+ array.__f__.__error__
@@ -0,0 +1,3 @@
1
+ class Array[unchecked out X]
2
+ def __f__: () -> X
3
+ end
@@ -0,0 +1,73 @@
1
+ ---
2
+ - file: a.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 8
7
+ character: 2
8
+ end:
9
+ line: 8
10
+ character: 12
11
+ severity: ERROR
12
+ message: |-
13
+ Cannot assign a value of type `::Foo` to a variable of type `::String`
14
+ ::Foo <: ::String
15
+ ::Object <: ::String
16
+ ::BasicObject <: ::String
17
+ code: Ruby::IncompatibleAssignment
18
+ - file: b.rb
19
+ diagnostics:
20
+ - range:
21
+ start:
22
+ line: 7
23
+ character: 0
24
+ end:
25
+ line: 7
26
+ character: 17
27
+ severity: ERROR
28
+ message: |-
29
+ Cannot assign a value of type `::String` to a variable of type `::Integer`
30
+ ::String <: ::Integer
31
+ ::Object <: ::Integer
32
+ ::BasicObject <: ::Integer
33
+ code: Ruby::IncompatibleAssignment
34
+ - range:
35
+ start:
36
+ line: 10
37
+ character: 0
38
+ end:
39
+ line: 10
40
+ character: 16
41
+ severity: ERROR
42
+ message: |-
43
+ Cannot assign a value of type `::Object` to a variable of type `::Integer`
44
+ ::Object <: ::Integer
45
+ ::BasicObject <: ::Integer
46
+ code: Ruby::IncompatibleAssignment
47
+ - file: c.rb
48
+ diagnostics:
49
+ - range:
50
+ start:
51
+ line: 6
52
+ character: 4
53
+ end:
54
+ line: 6
55
+ character: 20
56
+ severity: ERROR
57
+ message: |-
58
+ Cannot assign a value of type `::Object` to a variable of type `::String`
59
+ ::Object <: ::String
60
+ ::BasicObject <: ::String
61
+ code: Ruby::IncompatibleAssignment
62
+ - file: f.rb
63
+ diagnostics:
64
+ - range:
65
+ start:
66
+ line: 2
67
+ character: 12
68
+ end:
69
+ line: 2
70
+ character: 21
71
+ severity: ERROR
72
+ message: Type `::Integer` does not have method `__error__`
73
+ code: Ruby::NoMethod
@@ -0,0 +1,81 @@
1
+ ---
2
+ - file: b.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 6
7
+ character: 0
8
+ end:
9
+ line: 6
10
+ character: 14
11
+ severity: ERROR
12
+ message: |-
13
+ Cannot assign a value of type `::Hash[::Symbol, ::Integer]` to a variable of type `::Hash[::Symbol, (::String | nil)]`
14
+ ::Hash[::Symbol, ::Integer] <: ::Hash[::Symbol, (::String | nil)]
15
+ ::Integer <: (::String | nil)
16
+ ::Integer <: ::String
17
+ ::Numeric <: ::String
18
+ ::Object <: ::String
19
+ ::BasicObject <: ::String
20
+ code: Ruby::IncompatibleAssignment
21
+ - file: c.rb
22
+ diagnostics:
23
+ - range:
24
+ start:
25
+ line: 5
26
+ character: 3
27
+ end:
28
+ line: 5
29
+ character: 10
30
+ severity: ERROR
31
+ message: Type `::Integer` does not have method `abcdefg`
32
+ code: Ruby::NoMethod
33
+ - range:
34
+ start:
35
+ line: 8
36
+ character: 5
37
+ end:
38
+ line: 8
39
+ character: 12
40
+ severity: ERROR
41
+ message: Type `::String` does not have method `abcdefg`
42
+ code: Ruby::NoMethod
43
+ - range:
44
+ start:
45
+ line: 10
46
+ character: 30
47
+ end:
48
+ line: 10
49
+ character: 37
50
+ severity: ERROR
51
+ message: Type `(::Integer | ::String)` does not have method `abcdefg`
52
+ code: Ruby::NoMethod
53
+ - file: d.rb
54
+ diagnostics:
55
+ - range:
56
+ start:
57
+ line: 5
58
+ character: 0
59
+ end:
60
+ line: 5
61
+ character: 66
62
+ severity: ERROR
63
+ message: |-
64
+ Cannot assign a value of type `{ :email => ::String, :id => ::String, :name => ::String }` to a variable of type `{ :id => ::Integer, :name => ::String }`
65
+ { :email => ::String, :id => ::String, :name => ::String } <: { :id => ::Integer, :name => ::String }
66
+ ::String <: ::Integer
67
+ ::Object <: ::Integer
68
+ ::BasicObject <: ::Integer
69
+ code: Ruby::IncompatibleAssignment
70
+ - file: e.rb
71
+ diagnostics:
72
+ - range:
73
+ start:
74
+ line: 1
75
+ character: 24
76
+ end:
77
+ line: 1
78
+ character: 37
79
+ severity: ERROR
80
+ message: Type `::Integer` does not have method `fffffffffffff`
81
+ code: Ruby::NoMethod
@@ -0,0 +1,25 @@
1
+ ---
2
+ - file: hello.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 9
7
+ character: 6
8
+ end:
9
+ line: 9
10
+ character: 9
11
+ severity: ERROR
12
+ message: Type `::_Bar` does not have method `foo`
13
+ code: Ruby::NoMethod
14
+ - range:
15
+ start:
16
+ line: 11
17
+ character: 0
18
+ end:
19
+ line: 11
20
+ character: 5
21
+ severity: ERROR
22
+ message: |-
23
+ Cannot assign a value of type `::_Bar` to a variable of type `::_Foo`
24
+ ::_Bar <: ::_Foo
25
+ code: Ruby::IncompatibleAssignment
@@ -0,0 +1,34 @@
1
+ ---
2
+ - file: a.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 5
7
+ character: 0
8
+ end:
9
+ line: 7
10
+ character: 7
11
+ severity: ERROR
12
+ message: |-
13
+ Cannot assign a value of type `(::Symbol | nil)` to a variable of type `::String`
14
+ (::Symbol | nil) <: ::String
15
+ ::Symbol <: ::String
16
+ ::Object <: ::String
17
+ ::BasicObject <: ::String
18
+ code: Ruby::IncompatibleAssignment
19
+ - range:
20
+ start:
21
+ line: 15
22
+ character: 0
23
+ end:
24
+ line: 19
25
+ character: 7
26
+ severity: ERROR
27
+ message: |-
28
+ Cannot assign a value of type `(::String | ::Integer)` to a variable of type `::String`
29
+ (::String | ::Integer) <: ::String
30
+ ::Integer <: ::String
31
+ ::Numeric <: ::String
32
+ ::Object <: ::String
33
+ ::BasicObject <: ::String
34
+ code: Ruby::IncompatibleAssignment
@@ -0,0 +1,13 @@
1
+ class B
2
+ Request = _ = Struct.new(:method, :path, keyword_init: true) do
3
+ # @implements Request
4
+
5
+ def post?
6
+ method == "POST"
7
+ end
8
+
9
+ def get?
10
+ method == "GET"
11
+ end
12
+ end
13
+ end