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,12 @@
1
+ class B
2
+ class Request
3
+ attr_reader method: String
4
+ attr_reader path: String
5
+
6
+ def initialize: (method: String, path: String) -> void
7
+
8
+ def post?: () -> bool
9
+
10
+ def get?: () -> bool
11
+ end
12
+ end
@@ -0,0 +1,23 @@
1
+ ---
2
+ - file: a.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 1
7
+ character: 6
8
+ end:
9
+ line: 1
10
+ character: 7
11
+ severity: ERROR
12
+ message: Cannot find implementation of method `::A#baz`
13
+ code: Ruby::MethodDefinitionMissing
14
+ - range:
15
+ start:
16
+ line: 1
17
+ character: 6
18
+ end:
19
+ line: 1
20
+ character: 7
21
+ severity: ERROR
22
+ message: Cannot find implementation of method `::A.bar`
23
+ code: Ruby::MethodDefinitionMissing
@@ -0,0 +1 @@
1
+ --- []
@@ -0,0 +1,101 @@
1
+ ---
2
+ - file: a.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 4
7
+ character: 10
8
+ end:
9
+ line: 4
10
+ character: 13
11
+ severity: ERROR
12
+ message: Type `::Integer` does not have method `foo`
13
+ code: Ruby::NoMethod
14
+ - range:
15
+ start:
16
+ line: 7
17
+ character: 10
18
+ end:
19
+ line: 7
20
+ character: 13
21
+ severity: ERROR
22
+ message: Type `::Integer` does not have method `foo`
23
+ code: Ruby::NoMethod
24
+ - range:
25
+ start:
26
+ line: 12
27
+ character: 20
28
+ end:
29
+ line: 12
30
+ character: 29
31
+ severity: ERROR
32
+ message: Cannot detect the type of the expression
33
+ code: Ruby::FallbackAny
34
+ - range:
35
+ start:
36
+ line: 13
37
+ character: 10
38
+ end:
39
+ line: 13
40
+ character: 13
41
+ severity: ERROR
42
+ message: Type `::Integer` does not have method `foo`
43
+ code: Ruby::NoMethod
44
+ - range:
45
+ start:
46
+ line: 18
47
+ character: 20
48
+ end:
49
+ line: 18
50
+ character: 27
51
+ severity: ERROR
52
+ message: Cannot detect the type of the expression
53
+ code: Ruby::FallbackAny
54
+ - range:
55
+ start:
56
+ line: 19
57
+ character: 10
58
+ end:
59
+ line: 19
60
+ character: 13
61
+ severity: ERROR
62
+ message: Type `::Integer` does not have method `foo`
63
+ code: Ruby::NoMethod
64
+ - range:
65
+ start:
66
+ line: 22
67
+ character: 10
68
+ end:
69
+ line: 22
70
+ character: 13
71
+ severity: ERROR
72
+ message: Type `::Integer` does not have method `foo`
73
+ code: Ruby::NoMethod
74
+ - range:
75
+ start:
76
+ line: 24
77
+ character: 0
78
+ end:
79
+ line: 24
80
+ character: 19
81
+ severity: ERROR
82
+ message: |-
83
+ Cannot find compatible overloading of method `Integer` of type `::Object`
84
+ Method types:
85
+ def Integer: ((::Numeric | ::String), ?exception: bool) -> ::Integer
86
+ | (::String, ?::Integer, ?exception: bool) -> ::Integer
87
+ code: Ruby::UnresolvedOverloading
88
+ - range:
89
+ start:
90
+ line: 26
91
+ character: 0
92
+ end:
93
+ line: 26
94
+ character: 12
95
+ severity: ERROR
96
+ message: |-
97
+ Cannot find compatible overloading of method `Integer` of type `::Object`
98
+ Method types:
99
+ def Integer: ((::Numeric | ::String), ?exception: bool) -> ::Integer
100
+ | (::String, ?::Integer, ?exception: bool) -> ::Integer
101
+ code: Ruby::UnresolvedOverloading
@@ -0,0 +1,23 @@
1
+ ---
2
+ - file: a.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 5
7
+ character: 12
8
+ end:
9
+ line: 5
10
+ character: 15
11
+ severity: ERROR
12
+ message: Type `::A::Object` does not have method `bar`
13
+ code: Ruby::NoMethod
14
+ - range:
15
+ start:
16
+ line: 10
17
+ character: 11
18
+ end:
19
+ line: 10
20
+ character: 18
21
+ severity: ERROR
22
+ message: Type `::Object` does not have method `object?`
23
+ code: Ruby::NoMethod
@@ -0,0 +1,17 @@
1
+ ---
2
+ - file: a.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 3
7
+ character: 0
8
+ end:
9
+ line: 7
10
+ character: 3
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
@@ -0,0 +1,39 @@
1
+ ---
2
+ - file: a.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 3
7
+ character: 0
8
+ end:
9
+ line: 7
10
+ character: 17
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: 10
21
+ character: 0
22
+ end:
23
+ line: 12
24
+ character: 3
25
+ severity: ERROR
26
+ message: |-
27
+ Cannot assign a value of type `::Proc` to a variable of type `^(::Integer) -> ::Integer`
28
+ ::Proc <: ^(::Integer) -> ::Integer
29
+ code: Ruby::IncompatibleAssignment
30
+ - range:
31
+ start:
32
+ line: 11
33
+ character: 4
34
+ end:
35
+ line: 11
36
+ character: 5
37
+ severity: ERROR
38
+ message: Type `nil` does not have method `+`
39
+ code: Ruby::NoMethod
@@ -0,0 +1,106 @@
1
+ ---
2
+ - file: a.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 4
7
+ character: 0
8
+ end:
9
+ line: 4
10
+ character: 5
11
+ severity: ERROR
12
+ message: |-
13
+ Cannot assign a value of type `::Integer` to a variable of type `::String`
14
+ ::Integer <: ::String
15
+ ::Numeric <: ::String
16
+ ::Object <: ::String
17
+ ::BasicObject <: ::String
18
+ code: Ruby::IncompatibleAssignment
19
+ - range:
20
+ start:
21
+ line: 6
22
+ character: 0
23
+ end:
24
+ line: 6
25
+ character: 8
26
+ severity: ERROR
27
+ message: |-
28
+ Cannot assign a value of type `::Symbol` to a variable of type `::String`
29
+ ::Symbol <: ::String
30
+ ::Object <: ::String
31
+ ::BasicObject <: ::String
32
+ code: Ruby::IncompatibleAssignment
33
+ - range:
34
+ start:
35
+ line: 8
36
+ character: 0
37
+ end:
38
+ line: 8
39
+ character: 9
40
+ severity: ERROR
41
+ message: |-
42
+ Cannot assign a value of type `::String` to a variable of type `::Integer`
43
+ ::String <: ::Integer
44
+ ::Object <: ::Integer
45
+ ::BasicObject <: ::Integer
46
+ code: Ruby::IncompatibleAssignment
47
+ - range:
48
+ start:
49
+ line: 10
50
+ character: 0
51
+ end:
52
+ line: 10
53
+ character: 8
54
+ severity: ERROR
55
+ message: |-
56
+ Cannot assign a value of type `bool` to a variable of type `::String`
57
+ bool <: ::String
58
+ (true | false) <: ::String
59
+ true <: ::String
60
+ ::TrueClass <: ::String
61
+ ::Object <: ::String
62
+ ::BasicObject <: ::String
63
+ code: Ruby::IncompatibleAssignment
64
+ - range:
65
+ start:
66
+ line: 11
67
+ character: 0
68
+ end:
69
+ line: 11
70
+ character: 9
71
+ severity: ERROR
72
+ message: |-
73
+ Cannot assign a value of type `bool` to a variable of type `::Integer`
74
+ bool <: ::Integer
75
+ (true | false) <: ::Integer
76
+ true <: ::Integer
77
+ ::TrueClass <: ::Integer
78
+ ::Object <: ::Integer
79
+ ::BasicObject <: ::Integer
80
+ code: Ruby::IncompatibleAssignment
81
+ - file: b.rb
82
+ diagnostics:
83
+ - range:
84
+ start:
85
+ line: 4
86
+ character: 6
87
+ end:
88
+ line: 4
89
+ character: 7
90
+ severity: ERROR
91
+ message: |-
92
+ Cannot pass a value of type `::Integer` as an argument of type `3`
93
+ ::Integer <: 3
94
+ code: Ruby::ArgumentTypeMismatch
95
+ - range:
96
+ start:
97
+ line: 7
98
+ character: 11
99
+ end:
100
+ line: 7
101
+ character: 15
102
+ severity: ERROR
103
+ message: |-
104
+ Cannot assign a value of type `::Symbol` to an expression of type `:foo`
105
+ ::Symbol <: :foo
106
+ code: Ruby::IncompatibleAssignment
@@ -0,0 +1 @@
1
+ --- []
@@ -0,0 +1,90 @@
1
+ ---
2
+ - file: a.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 3
7
+ character: 0
8
+ end:
9
+ line: 11
10
+ character: 3
11
+ severity: ERROR
12
+ message: |-
13
+ Cannot allow method body have type `::Integer` because declared as type `::String`
14
+ ::Integer <: ::String
15
+ ::Numeric <: ::String
16
+ ::Object <: ::String
17
+ ::BasicObject <: ::String
18
+ code: Ruby::MethodBodyTypeMismatch
19
+ - range:
20
+ start:
21
+ line: 6
22
+ character: 2
23
+ end:
24
+ line: 6
25
+ character: 7
26
+ severity: ERROR
27
+ message: |-
28
+ Cannot assign a value of type `::Integer` to a variable of type `::String`
29
+ ::Integer <: ::String
30
+ ::Numeric <: ::String
31
+ ::Object <: ::String
32
+ ::BasicObject <: ::String
33
+ code: Ruby::IncompatibleAssignment
34
+ - range:
35
+ start:
36
+ line: 8
37
+ character: 2
38
+ end:
39
+ line: 8
40
+ character: 7
41
+ severity: ERROR
42
+ message: |-
43
+ Cannot assign a value of type `::Integer` to a variable of type `::String`
44
+ ::Integer <: ::String
45
+ ::Numeric <: ::String
46
+ ::Object <: ::String
47
+ ::BasicObject <: ::String
48
+ code: Ruby::IncompatibleAssignment
49
+ - range:
50
+ start:
51
+ line: 15
52
+ character: 7
53
+ end:
54
+ line: 15
55
+ character: 13
56
+ severity: ERROR
57
+ message: Method parameters are incompatible with declaration `(::Integer) -> ::String`
58
+ code: Ruby::MethodArityMismatch
59
+ - range:
60
+ start:
61
+ line: 18
62
+ character: 2
63
+ end:
64
+ line: 18
65
+ character: 7
66
+ severity: ERROR
67
+ message: |-
68
+ Cannot assign a value of type `::Integer` to a variable of type `::String`
69
+ ::Integer <: ::String
70
+ ::Numeric <: ::String
71
+ ::Object <: ::String
72
+ ::BasicObject <: ::String
73
+ code: Ruby::IncompatibleAssignment
74
+ - file: b.rb
75
+ diagnostics:
76
+ - range:
77
+ start:
78
+ line: 4
79
+ character: 2
80
+ end:
81
+ line: 6
82
+ character: 5
83
+ severity: ERROR
84
+ message: |-
85
+ Cannot allow method body have type `::Symbol` because declared as type `(::Integer | ::String)`
86
+ ::Symbol <: (::Integer | ::String)
87
+ ::Symbol <: ::Integer
88
+ ::Object <: ::Integer
89
+ ::BasicObject <: ::Integer
90
+ code: Ruby::MethodBodyTypeMismatch
@@ -0,0 +1,75 @@
1
+ ---
2
+ - file: a.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 13
7
+ character: 4
8
+ end:
9
+ line: 13
10
+ character: 9
11
+ severity: ERROR
12
+ message: |-
13
+ Cannot assign a value of type `::Integer` to a variable of type `::String`
14
+ ::Integer <: ::String
15
+ ::Numeric <: ::String
16
+ ::Object <: ::String
17
+ ::BasicObject <: ::String
18
+ code: Ruby::IncompatibleAssignment
19
+ - range:
20
+ start:
21
+ line: 15
22
+ character: 4
23
+ end:
24
+ line: 15
25
+ character: 7
26
+ severity: ERROR
27
+ message: Type `(::Object & ::_Each2[::Integer, ::A] & ::A)` does not have method
28
+ `foo`
29
+ code: Ruby::NoMethod
30
+ - file: c.rb
31
+ diagnostics:
32
+ - range:
33
+ start:
34
+ line: 21
35
+ character: 2
36
+ end:
37
+ line: 21
38
+ character: 26
39
+ severity: ERROR
40
+ message: Type `singleton(::A)` does not have method `no_such_method_in_module`
41
+ code: Ruby::NoMethod
42
+ - file: d.rb
43
+ diagnostics:
44
+ - range:
45
+ start:
46
+ line: 3
47
+ character: 7
48
+ end:
49
+ line: 3
50
+ character: 8
51
+ severity: ERROR
52
+ message: Cannot find implementation of method `::X#foo`
53
+ code: Ruby::MethodDefinitionMissing
54
+ - file: f.rb
55
+ diagnostics:
56
+ - range:
57
+ start:
58
+ line: 1
59
+ character: 7
60
+ end:
61
+ line: 1
62
+ character: 14
63
+ severity: ERROR
64
+ message: Cannot find implementation of method `::Palette.nestopia_palette`
65
+ code: Ruby::MethodDefinitionMissing
66
+ - range:
67
+ start:
68
+ line: 1
69
+ character: 7
70
+ end:
71
+ line: 1
72
+ character: 14
73
+ severity: ERROR
74
+ message: "@dynamic annotation contains unknown method name `nestopia_palette`"
75
+ code: Ruby::UnexpectedDynamicMethod