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 6d0a9d1 commit bff6a1eCopy full SHA for bff6a1e
1 file changed
lib/repl_type_completor/result.rb
@@ -4,7 +4,13 @@
4
5
module ReplTypeCompletor
6
class Result
7
- HIDDEN_METHODS = %w[Namespace TypeName] # defined by rbs, should be hidden
+ OPERATOR_METHODS = %w[! != !~ % & * ** + +@ - -@ / < << <= <=> == === =~ > >= >> [] []= ^ ` | ~]
8
+ HIDDEN_METHODS = [
9
+ # defined by RBS, should be hidden
10
+ 'Namespace', 'TypeName',
11
+ # operator methods does not need to be completed
12
+ *OPERATOR_METHODS
13
+ ]
14
RESERVED_WORDS = %w[
15
__ENCODING__ __LINE__ __FILE__
16
BEGIN END
0 commit comments