steep 0.37.0 → 0.42.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +1 -1
- data/CHANGELOG.md +34 -0
- data/Rakefile +5 -2
- data/bin/output_rebaseline.rb +34 -0
- data/bin/output_test.rb +53 -0
- data/lib/steep.rb +95 -14
- data/lib/steep/ast/types/bot.rb +1 -1
- data/lib/steep/ast/types/class.rb +4 -0
- data/lib/steep/ast/types/factory.rb +10 -0
- data/lib/steep/ast/types/logic.rb +16 -3
- data/lib/steep/ast/types/top.rb +1 -1
- data/lib/steep/cli.rb +31 -7
- data/lib/steep/diagnostic/helper.rb +17 -0
- data/lib/steep/diagnostic/lsp_formatter.rb +16 -0
- data/lib/steep/diagnostic/ruby.rb +619 -0
- data/lib/steep/diagnostic/signature.rb +357 -0
- data/lib/steep/drivers/annotations.rb +19 -28
- data/lib/steep/drivers/check.rb +182 -60
- data/lib/steep/drivers/diagnostic_printer.rb +99 -0
- data/lib/steep/drivers/langserver.rb +3 -8
- data/lib/steep/drivers/print_project.rb +10 -9
- data/lib/steep/drivers/stats.rb +124 -32
- data/lib/steep/drivers/trace_printer.rb +5 -1
- data/lib/steep/drivers/utils/jobs_count.rb +9 -0
- data/lib/steep/drivers/validate.rb +31 -13
- data/lib/steep/drivers/watch.rb +69 -48
- data/lib/steep/drivers/worker.rb +16 -8
- data/lib/steep/expectations.rb +159 -0
- data/lib/steep/index/rbs_index.rb +334 -0
- data/lib/steep/index/signature_symbol_provider.rb +162 -0
- data/lib/steep/index/source_index.rb +100 -0
- data/lib/steep/project.rb +0 -30
- data/lib/steep/project/dsl.rb +5 -3
- data/lib/steep/project/options.rb +4 -4
- data/lib/steep/project/pattern.rb +56 -0
- data/lib/steep/project/target.rb +9 -214
- data/lib/steep/range_extension.rb +29 -0
- data/lib/steep/server/base_worker.rb +43 -7
- data/lib/steep/server/change_buffer.rb +63 -0
- data/lib/steep/server/interaction_worker.rb +73 -56
- data/lib/steep/server/master.rb +245 -109
- data/lib/steep/server/type_check_worker.rb +122 -0
- data/lib/steep/server/worker_process.rb +17 -15
- data/lib/steep/{project → services}/completion_provider.rb +3 -3
- data/lib/steep/services/content_change.rb +61 -0
- data/lib/steep/services/file_loader.rb +48 -0
- data/lib/steep/{project → services}/hover_content.rb +14 -16
- data/lib/steep/services/path_assignment.rb +29 -0
- data/lib/steep/services/signature_service.rb +369 -0
- data/lib/steep/services/stats_calculator.rb +69 -0
- data/lib/steep/services/type_check_service.rb +342 -0
- data/lib/steep/signature/validator.rb +174 -32
- data/lib/steep/subtyping/check.rb +248 -47
- data/lib/steep/subtyping/constraints.rb +2 -2
- data/lib/steep/type_construction.rb +565 -295
- data/lib/steep/type_inference/constant_env.rb +5 -1
- data/lib/steep/type_inference/local_variable_type_env.rb +26 -12
- data/lib/steep/type_inference/logic_type_interpreter.rb +99 -26
- data/lib/steep/type_inference/type_env.rb +43 -17
- data/lib/steep/typing.rb +8 -2
- data/lib/steep/version.rb +1 -1
- data/smoke/alias/a.rb +0 -3
- data/smoke/alias/b.rb +0 -1
- data/smoke/alias/c.rb +0 -2
- data/smoke/alias/test_expectations.yml +96 -0
- data/smoke/and/a.rb +0 -3
- data/smoke/and/test_expectations.yml +31 -0
- data/smoke/array/a.rb +0 -3
- data/smoke/array/b.rb +0 -2
- data/smoke/array/c.rb +0 -1
- data/smoke/array/test_expectations.yml +103 -0
- data/smoke/block/a.rb +0 -2
- data/smoke/block/b.rb +0 -2
- data/smoke/block/d.rb +0 -4
- data/smoke/block/test_expectations.yml +125 -0
- data/smoke/case/a.rb +0 -3
- data/smoke/case/test_expectations.yml +47 -0
- data/smoke/class/a.rb +0 -3
- data/smoke/class/c.rb +0 -1
- data/smoke/class/f.rb +0 -1
- data/smoke/class/g.rb +0 -2
- data/smoke/class/i.rb +0 -2
- data/smoke/class/test_expectations.yml +120 -0
- data/smoke/const/a.rb +0 -3
- data/smoke/const/b.rb +7 -0
- data/smoke/const/b.rbs +5 -0
- data/smoke/const/test_expectations.yml +139 -0
- data/smoke/diagnostics-rbs-duplicated/Steepfile +5 -0
- data/smoke/diagnostics-rbs-duplicated/a.rbs +5 -0
- data/smoke/diagnostics-rbs-duplicated/test_expectations.yml +13 -0
- data/smoke/diagnostics-rbs/Steepfile +8 -0
- data/smoke/diagnostics-rbs/duplicated-method-definition.rbs +20 -0
- data/smoke/diagnostics-rbs/generic-parameter-mismatch.rbs +7 -0
- data/smoke/diagnostics-rbs/invalid-method-overload.rbs +3 -0
- data/smoke/diagnostics-rbs/invalid-type-application.rbs +7 -0
- data/smoke/diagnostics-rbs/invalid_variance_annotation.rbs +3 -0
- data/smoke/diagnostics-rbs/recursive-alias.rbs +5 -0
- data/smoke/diagnostics-rbs/recursive-class.rbs +8 -0
- data/smoke/diagnostics-rbs/superclass-mismatch.rbs +7 -0
- data/smoke/diagnostics-rbs/test_expectations.yml +231 -0
- data/smoke/diagnostics-rbs/unknown-method-alias.rbs +3 -0
- data/smoke/diagnostics-rbs/unknown-type-name-2.rbs +5 -0
- data/smoke/diagnostics-rbs/unknown-type-name.rbs +13 -0
- data/smoke/diagnostics/Steepfile +5 -0
- data/smoke/diagnostics/a.rbs +26 -0
- data/smoke/diagnostics/argument_type_mismatch.rb +1 -0
- data/smoke/diagnostics/block_body_type_mismatch.rb +1 -0
- data/smoke/diagnostics/block_type_mismatch.rb +3 -0
- data/smoke/diagnostics/break_type_mismatch.rb +1 -0
- data/smoke/diagnostics/else_on_exhaustive_case.rb +12 -0
- data/smoke/diagnostics/incompatible_annotation.rb +6 -0
- data/smoke/diagnostics/incompatible_argument.rb +1 -0
- data/smoke/diagnostics/incompatible_assignment.rb +8 -0
- data/smoke/diagnostics/method_arity_mismatch.rb +11 -0
- data/smoke/diagnostics/method_body_type_mismatch.rb +6 -0
- data/smoke/diagnostics/method_definition_missing.rb +2 -0
- data/smoke/diagnostics/method_return_type_annotation_mismatch.rb +7 -0
- data/smoke/diagnostics/missing_keyword.rb +1 -0
- data/smoke/diagnostics/no_method.rb +1 -0
- data/smoke/diagnostics/required_block_missing.rb +1 -0
- data/smoke/diagnostics/return_type_mismatch.rb +6 -0
- data/smoke/diagnostics/test_expectations.yml +477 -0
- data/smoke/diagnostics/unexpected_block_given.rb +1 -0
- data/smoke/diagnostics/unexpected_dynamic_method.rb +3 -0
- data/smoke/diagnostics/unexpected_jump.rb +4 -0
- data/smoke/diagnostics/unexpected_jump_value.rb +3 -0
- data/smoke/diagnostics/unexpected_keyword.rb +1 -0
- data/smoke/diagnostics/unexpected_splat.rb +1 -0
- data/smoke/diagnostics/unexpected_yield.rb +6 -0
- data/smoke/diagnostics/unknown_constant_assigned.rb +7 -0
- data/smoke/diagnostics/unresolved_overloading.rb +1 -0
- data/smoke/diagnostics/unsatisfiable_constraint.rb +7 -0
- data/smoke/diagnostics/unsupported_syntax.rb +2 -0
- data/smoke/dstr/a.rb +0 -1
- data/smoke/dstr/test_expectations.yml +13 -0
- data/smoke/ensure/a.rb +0 -4
- data/smoke/ensure/test_expectations.yml +62 -0
- data/smoke/enumerator/a.rb +0 -6
- data/smoke/enumerator/b.rb +0 -3
- data/smoke/enumerator/test_expectations.yml +135 -0
- data/smoke/extension/a.rb +0 -1
- data/smoke/extension/b.rb +0 -2
- data/smoke/extension/c.rb +0 -1
- data/smoke/extension/f.rb +2 -0
- data/smoke/extension/f.rbs +3 -0
- data/smoke/extension/test_expectations.yml +73 -0
- data/smoke/hash/b.rb +0 -1
- data/smoke/hash/c.rb +0 -3
- data/smoke/hash/d.rb +0 -1
- data/smoke/hash/e.rb +0 -1
- data/smoke/hash/test_expectations.yml +81 -0
- data/smoke/hello/hello.rb +0 -2
- data/smoke/hello/test_expectations.yml +25 -0
- data/smoke/if/a.rb +0 -2
- data/smoke/if/test_expectations.yml +34 -0
- data/smoke/implements/a.rb +0 -2
- data/smoke/implements/test_expectations.yml +23 -0
- data/smoke/initialize/test_expectations.yml +1 -0
- data/smoke/integer/a.rb +0 -7
- data/smoke/integer/test_expectations.yml +101 -0
- data/smoke/interface/a.rb +0 -2
- data/smoke/interface/test_expectations.yml +23 -0
- data/smoke/kwbegin/a.rb +0 -1
- data/smoke/kwbegin/test_expectations.yml +17 -0
- data/smoke/lambda/a.rb +1 -4
- data/smoke/lambda/test_expectations.yml +39 -0
- data/smoke/literal/a.rb +0 -5
- data/smoke/literal/b.rb +0 -2
- data/smoke/literal/test_expectations.yml +106 -0
- data/smoke/map/test_expectations.yml +1 -0
- data/smoke/method/a.rb +0 -5
- data/smoke/method/b.rb +0 -1
- data/smoke/method/test_expectations.yml +90 -0
- data/smoke/module/a.rb +0 -2
- data/smoke/module/b.rb +0 -2
- data/smoke/module/c.rb +0 -1
- data/smoke/module/d.rb +0 -1
- data/smoke/module/f.rb +0 -2
- data/smoke/module/test_expectations.yml +75 -0
- data/smoke/regexp/a.rb +0 -38
- data/smoke/regexp/b.rb +0 -26
- data/smoke/regexp/test_expectations.yml +615 -0
- data/smoke/regression/set_divide.rb +0 -4
- data/smoke/regression/test_expectations.yml +43 -0
- data/smoke/rescue/a.rb +0 -5
- data/smoke/rescue/test_expectations.yml +79 -0
- data/smoke/self/a.rb +0 -2
- data/smoke/self/test_expectations.yml +23 -0
- data/smoke/skip/skip.rb +0 -2
- data/smoke/skip/test_expectations.yml +23 -0
- data/smoke/stdout/test_expectations.yml +1 -0
- data/smoke/super/a.rb +0 -4
- data/smoke/super/test_expectations.yml +79 -0
- data/smoke/toplevel/a.rb +0 -1
- data/smoke/toplevel/test_expectations.yml +15 -0
- data/smoke/tsort/Steepfile +2 -0
- data/smoke/tsort/a.rb +0 -3
- data/smoke/tsort/test_expectations.yml +63 -0
- data/smoke/type_case/a.rb +0 -4
- data/smoke/type_case/test_expectations.yml +48 -0
- data/smoke/unexpected/Steepfile +5 -0
- data/smoke/unexpected/test_expectations.yml +25 -0
- data/smoke/unexpected/unexpected.rb +1 -0
- data/smoke/unexpected/unexpected.rbs +3 -0
- data/smoke/yield/a.rb +0 -3
- data/smoke/yield/b.rb +6 -0
- data/smoke/yield/test_expectations.yml +68 -0
- data/steep.gemspec +4 -3
- metadata +144 -29
- data/bin/smoke_runner.rb +0 -139
- data/lib/steep/drivers/signature_error_printer.rb +0 -25
- data/lib/steep/errors.rb +0 -565
- data/lib/steep/project/file_loader.rb +0 -68
- data/lib/steep/project/signature_file.rb +0 -33
- data/lib/steep/project/source_file.rb +0 -129
- data/lib/steep/server/code_worker.rb +0 -137
- data/lib/steep/server/signature_worker.rb +0 -152
- data/lib/steep/server/utils.rb +0 -69
- data/lib/steep/signature/errors.rb +0 -82
- data/lib/steep/type_assignability.rb +0 -367
@@ -0,0 +1 @@
|
|
1
|
+
[1].at(1) { 123 }
|
@@ -0,0 +1 @@
|
|
1
|
+
UnexpectedKeyword.new.foo(foo: 123, bar: :bar)
|
@@ -0,0 +1 @@
|
|
1
|
+
{ foo: :bar, **123 }
|
@@ -0,0 +1 @@
|
|
1
|
+
1 + ""
|
data/smoke/dstr/a.rb
CHANGED
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
|
data/smoke/enumerator/a.rb
CHANGED
@@ -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
|
data/smoke/enumerator/b.rb
CHANGED
@@ -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
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
@@ -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
|