Update RBI files for rubocop-performance.

This commit is contained in:
BrewTestBot 2021-05-03 06:52:37 +00:00
parent 4e836fd80d
commit 4e831d518d
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
2 changed files with 6 additions and 0 deletions

View File

@ -1236,6 +1236,7 @@ class Parser::Source::Comment
class << self
def associate(ast, comments); end
def associate_by_identity(ast, comments); end
def associate_locations(ast, comments); end
end
end
@ -1244,6 +1245,7 @@ class Parser::Source::Comment::Associator
def initialize(ast, comments); end
def associate; end
def associate_by_identity; end
def associate_locations; end
def skip_directives; end
def skip_directives=(_arg0); end

View File

@ -437,6 +437,10 @@ class RuboCop::Cop::Performance::MapCompact < ::RuboCop::Cop::Base
def map_compact(param0 = T.unsafe(nil)); end
def on_send(node); end
private
def compact_method_range(compact_node); end
end
RuboCop::Cop::Performance::MapCompact::MSG = T.let(T.unsafe(nil), String)