steep 0.37.0 → 0.42.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (221) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby.yml +1 -1
  3. data/CHANGELOG.md +34 -0
  4. data/Rakefile +5 -2
  5. data/bin/output_rebaseline.rb +34 -0
  6. data/bin/output_test.rb +53 -0
  7. data/lib/steep.rb +95 -14
  8. data/lib/steep/ast/types/bot.rb +1 -1
  9. data/lib/steep/ast/types/class.rb +4 -0
  10. data/lib/steep/ast/types/factory.rb +10 -0
  11. data/lib/steep/ast/types/logic.rb +16 -3
  12. data/lib/steep/ast/types/top.rb +1 -1
  13. data/lib/steep/cli.rb +31 -7
  14. data/lib/steep/diagnostic/helper.rb +17 -0
  15. data/lib/steep/diagnostic/lsp_formatter.rb +16 -0
  16. data/lib/steep/diagnostic/ruby.rb +619 -0
  17. data/lib/steep/diagnostic/signature.rb +357 -0
  18. data/lib/steep/drivers/annotations.rb +19 -28
  19. data/lib/steep/drivers/check.rb +182 -60
  20. data/lib/steep/drivers/diagnostic_printer.rb +99 -0
  21. data/lib/steep/drivers/langserver.rb +3 -8
  22. data/lib/steep/drivers/print_project.rb +10 -9
  23. data/lib/steep/drivers/stats.rb +124 -32
  24. data/lib/steep/drivers/trace_printer.rb +5 -1
  25. data/lib/steep/drivers/utils/jobs_count.rb +9 -0
  26. data/lib/steep/drivers/validate.rb +31 -13
  27. data/lib/steep/drivers/watch.rb +69 -48
  28. data/lib/steep/drivers/worker.rb +16 -8
  29. data/lib/steep/expectations.rb +159 -0
  30. data/lib/steep/index/rbs_index.rb +334 -0
  31. data/lib/steep/index/signature_symbol_provider.rb +162 -0
  32. data/lib/steep/index/source_index.rb +100 -0
  33. data/lib/steep/project.rb +0 -30
  34. data/lib/steep/project/dsl.rb +5 -3
  35. data/lib/steep/project/options.rb +4 -4
  36. data/lib/steep/project/pattern.rb +56 -0
  37. data/lib/steep/project/target.rb +9 -214
  38. data/lib/steep/range_extension.rb +29 -0
  39. data/lib/steep/server/base_worker.rb +43 -7
  40. data/lib/steep/server/change_buffer.rb +63 -0
  41. data/lib/steep/server/interaction_worker.rb +73 -56
  42. data/lib/steep/server/master.rb +245 -109
  43. data/lib/steep/server/type_check_worker.rb +122 -0
  44. data/lib/steep/server/worker_process.rb +17 -15
  45. data/lib/steep/{project → services}/completion_provider.rb +3 -3
  46. data/lib/steep/services/content_change.rb +61 -0
  47. data/lib/steep/services/file_loader.rb +48 -0
  48. data/lib/steep/{project → services}/hover_content.rb +14 -16
  49. data/lib/steep/services/path_assignment.rb +29 -0
  50. data/lib/steep/services/signature_service.rb +369 -0
  51. data/lib/steep/services/stats_calculator.rb +69 -0
  52. data/lib/steep/services/type_check_service.rb +342 -0
  53. data/lib/steep/signature/validator.rb +174 -32
  54. data/lib/steep/subtyping/check.rb +248 -47
  55. data/lib/steep/subtyping/constraints.rb +2 -2
  56. data/lib/steep/type_construction.rb +565 -295
  57. data/lib/steep/type_inference/constant_env.rb +5 -1
  58. data/lib/steep/type_inference/local_variable_type_env.rb +26 -12
  59. data/lib/steep/type_inference/logic_type_interpreter.rb +99 -26
  60. data/lib/steep/type_inference/type_env.rb +43 -17
  61. data/lib/steep/typing.rb +8 -2
  62. data/lib/steep/version.rb +1 -1
  63. data/smoke/alias/a.rb +0 -3
  64. data/smoke/alias/b.rb +0 -1
  65. data/smoke/alias/c.rb +0 -2
  66. data/smoke/alias/test_expectations.yml +96 -0
  67. data/smoke/and/a.rb +0 -3
  68. data/smoke/and/test_expectations.yml +31 -0
  69. data/smoke/array/a.rb +0 -3
  70. data/smoke/array/b.rb +0 -2
  71. data/smoke/array/c.rb +0 -1
  72. data/smoke/array/test_expectations.yml +103 -0
  73. data/smoke/block/a.rb +0 -2
  74. data/smoke/block/b.rb +0 -2
  75. data/smoke/block/d.rb +0 -4
  76. data/smoke/block/test_expectations.yml +125 -0
  77. data/smoke/case/a.rb +0 -3
  78. data/smoke/case/test_expectations.yml +47 -0
  79. data/smoke/class/a.rb +0 -3
  80. data/smoke/class/c.rb +0 -1
  81. data/smoke/class/f.rb +0 -1
  82. data/smoke/class/g.rb +0 -2
  83. data/smoke/class/i.rb +0 -2
  84. data/smoke/class/test_expectations.yml +120 -0
  85. data/smoke/const/a.rb +0 -3
  86. data/smoke/const/b.rb +7 -0
  87. data/smoke/const/b.rbs +5 -0
  88. data/smoke/const/test_expectations.yml +139 -0
  89. data/smoke/diagnostics-rbs-duplicated/Steepfile +5 -0
  90. data/smoke/diagnostics-rbs-duplicated/a.rbs +5 -0
  91. data/smoke/diagnostics-rbs-duplicated/test_expectations.yml +13 -0
  92. data/smoke/diagnostics-rbs/Steepfile +8 -0
  93. data/smoke/diagnostics-rbs/duplicated-method-definition.rbs +20 -0
  94. data/smoke/diagnostics-rbs/generic-parameter-mismatch.rbs +7 -0
  95. data/smoke/diagnostics-rbs/invalid-method-overload.rbs +3 -0
  96. data/smoke/diagnostics-rbs/invalid-type-application.rbs +7 -0
  97. data/smoke/diagnostics-rbs/invalid_variance_annotation.rbs +3 -0
  98. data/smoke/diagnostics-rbs/recursive-alias.rbs +5 -0
  99. data/smoke/diagnostics-rbs/recursive-class.rbs +8 -0
  100. data/smoke/diagnostics-rbs/superclass-mismatch.rbs +7 -0
  101. data/smoke/diagnostics-rbs/test_expectations.yml +231 -0
  102. data/smoke/diagnostics-rbs/unknown-method-alias.rbs +3 -0
  103. data/smoke/diagnostics-rbs/unknown-type-name-2.rbs +5 -0
  104. data/smoke/diagnostics-rbs/unknown-type-name.rbs +13 -0
  105. data/smoke/diagnostics/Steepfile +5 -0
  106. data/smoke/diagnostics/a.rbs +26 -0
  107. data/smoke/diagnostics/argument_type_mismatch.rb +1 -0
  108. data/smoke/diagnostics/block_body_type_mismatch.rb +1 -0
  109. data/smoke/diagnostics/block_type_mismatch.rb +3 -0
  110. data/smoke/diagnostics/break_type_mismatch.rb +1 -0
  111. data/smoke/diagnostics/else_on_exhaustive_case.rb +12 -0
  112. data/smoke/diagnostics/incompatible_annotation.rb +6 -0
  113. data/smoke/diagnostics/incompatible_argument.rb +1 -0
  114. data/smoke/diagnostics/incompatible_assignment.rb +8 -0
  115. data/smoke/diagnostics/method_arity_mismatch.rb +11 -0
  116. data/smoke/diagnostics/method_body_type_mismatch.rb +6 -0
  117. data/smoke/diagnostics/method_definition_missing.rb +2 -0
  118. data/smoke/diagnostics/method_return_type_annotation_mismatch.rb +7 -0
  119. data/smoke/diagnostics/missing_keyword.rb +1 -0
  120. data/smoke/diagnostics/no_method.rb +1 -0
  121. data/smoke/diagnostics/required_block_missing.rb +1 -0
  122. data/smoke/diagnostics/return_type_mismatch.rb +6 -0
  123. data/smoke/diagnostics/test_expectations.yml +477 -0
  124. data/smoke/diagnostics/unexpected_block_given.rb +1 -0
  125. data/smoke/diagnostics/unexpected_dynamic_method.rb +3 -0
  126. data/smoke/diagnostics/unexpected_jump.rb +4 -0
  127. data/smoke/diagnostics/unexpected_jump_value.rb +3 -0
  128. data/smoke/diagnostics/unexpected_keyword.rb +1 -0
  129. data/smoke/diagnostics/unexpected_splat.rb +1 -0
  130. data/smoke/diagnostics/unexpected_yield.rb +6 -0
  131. data/smoke/diagnostics/unknown_constant_assigned.rb +7 -0
  132. data/smoke/diagnostics/unresolved_overloading.rb +1 -0
  133. data/smoke/diagnostics/unsatisfiable_constraint.rb +7 -0
  134. data/smoke/diagnostics/unsupported_syntax.rb +2 -0
  135. data/smoke/dstr/a.rb +0 -1
  136. data/smoke/dstr/test_expectations.yml +13 -0
  137. data/smoke/ensure/a.rb +0 -4
  138. data/smoke/ensure/test_expectations.yml +62 -0
  139. data/smoke/enumerator/a.rb +0 -6
  140. data/smoke/enumerator/b.rb +0 -3
  141. data/smoke/enumerator/test_expectations.yml +135 -0
  142. data/smoke/extension/a.rb +0 -1
  143. data/smoke/extension/b.rb +0 -2
  144. data/smoke/extension/c.rb +0 -1
  145. data/smoke/extension/f.rb +2 -0
  146. data/smoke/extension/f.rbs +3 -0
  147. data/smoke/extension/test_expectations.yml +73 -0
  148. data/smoke/hash/b.rb +0 -1
  149. data/smoke/hash/c.rb +0 -3
  150. data/smoke/hash/d.rb +0 -1
  151. data/smoke/hash/e.rb +0 -1
  152. data/smoke/hash/test_expectations.yml +81 -0
  153. data/smoke/hello/hello.rb +0 -2
  154. data/smoke/hello/test_expectations.yml +25 -0
  155. data/smoke/if/a.rb +0 -2
  156. data/smoke/if/test_expectations.yml +34 -0
  157. data/smoke/implements/a.rb +0 -2
  158. data/smoke/implements/test_expectations.yml +23 -0
  159. data/smoke/initialize/test_expectations.yml +1 -0
  160. data/smoke/integer/a.rb +0 -7
  161. data/smoke/integer/test_expectations.yml +101 -0
  162. data/smoke/interface/a.rb +0 -2
  163. data/smoke/interface/test_expectations.yml +23 -0
  164. data/smoke/kwbegin/a.rb +0 -1
  165. data/smoke/kwbegin/test_expectations.yml +17 -0
  166. data/smoke/lambda/a.rb +1 -4
  167. data/smoke/lambda/test_expectations.yml +39 -0
  168. data/smoke/literal/a.rb +0 -5
  169. data/smoke/literal/b.rb +0 -2
  170. data/smoke/literal/test_expectations.yml +106 -0
  171. data/smoke/map/test_expectations.yml +1 -0
  172. data/smoke/method/a.rb +0 -5
  173. data/smoke/method/b.rb +0 -1
  174. data/smoke/method/test_expectations.yml +90 -0
  175. data/smoke/module/a.rb +0 -2
  176. data/smoke/module/b.rb +0 -2
  177. data/smoke/module/c.rb +0 -1
  178. data/smoke/module/d.rb +0 -1
  179. data/smoke/module/f.rb +0 -2
  180. data/smoke/module/test_expectations.yml +75 -0
  181. data/smoke/regexp/a.rb +0 -38
  182. data/smoke/regexp/b.rb +0 -26
  183. data/smoke/regexp/test_expectations.yml +615 -0
  184. data/smoke/regression/set_divide.rb +0 -4
  185. data/smoke/regression/test_expectations.yml +43 -0
  186. data/smoke/rescue/a.rb +0 -5
  187. data/smoke/rescue/test_expectations.yml +79 -0
  188. data/smoke/self/a.rb +0 -2
  189. data/smoke/self/test_expectations.yml +23 -0
  190. data/smoke/skip/skip.rb +0 -2
  191. data/smoke/skip/test_expectations.yml +23 -0
  192. data/smoke/stdout/test_expectations.yml +1 -0
  193. data/smoke/super/a.rb +0 -4
  194. data/smoke/super/test_expectations.yml +79 -0
  195. data/smoke/toplevel/a.rb +0 -1
  196. data/smoke/toplevel/test_expectations.yml +15 -0
  197. data/smoke/tsort/Steepfile +2 -0
  198. data/smoke/tsort/a.rb +0 -3
  199. data/smoke/tsort/test_expectations.yml +63 -0
  200. data/smoke/type_case/a.rb +0 -4
  201. data/smoke/type_case/test_expectations.yml +48 -0
  202. data/smoke/unexpected/Steepfile +5 -0
  203. data/smoke/unexpected/test_expectations.yml +25 -0
  204. data/smoke/unexpected/unexpected.rb +1 -0
  205. data/smoke/unexpected/unexpected.rbs +3 -0
  206. data/smoke/yield/a.rb +0 -3
  207. data/smoke/yield/b.rb +6 -0
  208. data/smoke/yield/test_expectations.yml +68 -0
  209. data/steep.gemspec +4 -3
  210. metadata +144 -29
  211. data/bin/smoke_runner.rb +0 -139
  212. data/lib/steep/drivers/signature_error_printer.rb +0 -25
  213. data/lib/steep/errors.rb +0 -565
  214. data/lib/steep/project/file_loader.rb +0 -68
  215. data/lib/steep/project/signature_file.rb +0 -33
  216. data/lib/steep/project/source_file.rb +0 -129
  217. data/lib/steep/server/code_worker.rb +0 -137
  218. data/lib/steep/server/signature_worker.rb +0 -152
  219. data/lib/steep/server/utils.rb +0 -69
  220. data/lib/steep/signature/errors.rb +0 -82
  221. data/lib/steep/type_assignability.rb +0 -367
@@ -0,0 +1 @@
1
+ [1].at(1) { 123 }
@@ -0,0 +1,3 @@
1
+ class UnexpectedDynamicMethod
2
+ # @dynamic foo, bar
3
+ end
@@ -0,0 +1,4 @@
1
+ break
2
+
3
+ next
4
+
@@ -0,0 +1,3 @@
1
+ while true
2
+ break 10
3
+ end
@@ -0,0 +1 @@
1
+ UnexpectedKeyword.new.foo(foo: 123, bar: :bar)
@@ -0,0 +1 @@
1
+ { foo: :bar, **123 }
@@ -0,0 +1,6 @@
1
+ class UnexpectedYield
2
+ # @type method foo: () -> void
3
+ def foo
4
+ yield
5
+ end
6
+ end
@@ -0,0 +1,7 @@
1
+ class UnknownConstantAssigned
2
+ FOO = 123
3
+
4
+ FOO::BAR = 123
5
+
6
+ ::FOO = :foo
7
+ end
@@ -0,0 +1 @@
1
+ 1 + ""
@@ -0,0 +1,7 @@
1
+
2
+ test = UnsatisfiableConstraint.new
3
+
4
+ test.foo([]) do |x|
5
+ # @type var x: String
6
+ x.foo()
7
+ end
@@ -0,0 +1,2 @@
1
+ class <<[1, ""].sample
2
+ end
data/smoke/dstr/a.rb CHANGED
@@ -2,5 +2,4 @@
2
2
 
3
3
  a = 0
4
4
 
5
- # !expects NoMethodError: type=::Integer, method=foo
6
5
  b = "Hello #{a.foo} world!"
@@ -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
data/smoke/ensure/a.rb CHANGED
@@ -1,22 +1,18 @@
1
1
  # @type var a: Integer
2
2
  # @type var b: Integer
3
3
 
4
- # !expects IncompatibleAssignment: lhs_type=::Integer, rhs_type=::String
5
4
  a = begin
6
5
  'foo'
7
6
  ensure
8
- # !expects IncompatibleAssignment: lhs_type=::Integer, rhs_type=::Symbol
9
7
  b = :foo
10
8
  1
11
9
  end
12
10
 
13
11
  # @type method foo: (String) -> String
14
12
 
15
- # !expects MethodBodyTypeMismatch: method=foo, expected=::String, actual=::Integer
16
13
  def foo(a)
17
14
  10
18
15
  ensure
19
- # !expects* UnresolvedOverloading: receiver=::Integer, method_name=+,
20
16
  1 + '1'
21
17
  a
22
18
  end
@@ -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
@@ -2,18 +2,12 @@
2
2
 
3
3
  a = [1]
4
4
 
5
- # !expects IncompatibleAssignment: lhs_type=::Hash[::Symbol, ::String], rhs_type=::String
6
5
  hash = a.each.with_object("") do |x, y|
7
- # !expects IncompatibleAssignment: lhs_type=::Hash[::Symbol, ::String], rhs_type=::Integer
8
6
  hash = x
9
- # !expects IncompatibleAssignment: lhs_type=::Hash[::Symbol, ::String], rhs_type=::String
10
7
  hash = y
11
8
  end
12
9
 
13
- # !expects IncompatibleAssignment: lhs_type=::Hash[::Symbol, ::String], rhs_type=::Array[::Integer]
14
10
  hash = a.each.with_index do |x, y|
15
- # !expects IncompatibleAssignment: lhs_type=::Hash[::Symbol, ::String], rhs_type=::Integer
16
11
  hash = x
17
- # !expects IncompatibleAssignment: lhs_type=::Hash[::Symbol, ::String], rhs_type=::Integer
18
12
  hash = y
19
13
  end
@@ -3,20 +3,17 @@
3
3
 
4
4
  a = [1]
5
5
 
6
- # !expects* UnresolvedOverloading:
7
6
  b = a.each.with_object([]) do |i, xs|
8
7
  # @type var xs: String
9
8
  xs << i.to_s
10
9
  end
11
10
 
12
- # !expects IncompatibleAssignment: lhs_type=::Array[::Integer], rhs_type=::Array[::String]
13
11
  c = a.each.with_object([]) do |i, xs|
14
12
  # @type var xs: Array[String]
15
13
  xs << i.to_s
16
14
  end
17
15
 
18
16
  # @type var d: String
19
- # !expects IncompatibleAssignment: lhs_type=::String, rhs_type=::Array[untyped]
20
17
  d = a.each.with_object([]) do |i, xs|
21
18
  xs << i.to_s
22
19
  end
@@ -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
data/smoke/extension/a.rb CHANGED
@@ -5,7 +5,6 @@ foo = (_ = nil)
5
5
  foo.try do |x|
6
6
  # @type var string: String
7
7
 
8
- # !expects IncompatibleAssignment: lhs_type=::String, rhs_type=::Foo
9
8
  string = x
10
9
  end
11
10
 
data/smoke/extension/b.rb CHANGED
@@ -4,9 +4,7 @@ foo = (_ = nil)
4
4
  # @type var integer: Integer
5
5
 
6
6
  # Foo#f returns String because overridden
7
- # !expects IncompatibleAssignment: lhs_type=::Integer, rhs_type=::String
8
7
  integer = foo.f()
9
8
 
10
9
  # String#f returns Object because Object(X)#f is used
11
- # !expects IncompatibleAssignment: lhs_type=::Integer, rhs_type=::Object
12
10
  integer = "".f()
data/smoke/extension/c.rb CHANGED
@@ -3,7 +3,6 @@ class Foo
3
3
 
4
4
  def f()
5
5
  # @type var string: String
6
- # !expects IncompatibleAssignment: lhs_type=::String, rhs_type=::Object
7
6
  string = super()
8
7
  string
9
8
  end
@@ -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