We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58f33ee commit d870f48Copy full SHA for d870f48
1 file changed
sig/repl_completion.rbs
@@ -1,4 +1,19 @@
1
module ReplCompletion
2
VERSION: String
3
- # See the writing guide of rbs: https://github.com/ruby/rbs#guides
+
4
+ class Result
5
+ def completion_candidates: () -> Array[String]
6
+ def doc_namespace: (String) -> String?
7
+ end
8
9
+ def self.analyze: (String, Binding) -> Result?
10
11
+ def self.rbs_load_error: () -> Exception?
12
+ def self.last_analyze_error: () -> Exception?
13
14
+ def self.rbs_load_started?: () -> bool
15
+ def self.rbs_loaded?: () -> bool
16
+ def self.load_rbs: () -> void
17
+ def self.preload_rbs: () -> void
18
+ def self.info: () -> String
19
end
0 commit comments