Update RBI files for rubocop-ast.

This commit is contained in:
BrewTestBot 2021-01-08 06:16:35 +00:00
parent 1e1c8cb9d1
commit 1810a1d687
2 changed files with 9 additions and 17 deletions

View File

@ -617,6 +617,7 @@ class RuboCop::AST::Node < ::Parser::AST::Node
def ivasgn_type?; end
def keyword?; end
def kwarg_type?; end
def kwargs_type?; end
def kwbegin_type?; end
def kwnilarg_type?; end
def kwoptarg_type?; end
@ -639,6 +640,8 @@ class RuboCop::AST::Node < ::Parser::AST::Node
def match_current_line_type?; end
def match_guard_clause?(param0 = T.unsafe(nil)); end
def match_nil_pattern_type?; end
def match_pattern_p_type?; end
def match_pattern_type?; end
def match_rest_type?; end
def match_var_type?; end
def match_with_lvasgn_type?; end
@ -1584,8 +1587,6 @@ RuboCop::AST::NodePattern::Sets::SET__ = T.let(T.unsafe(nil), Set)
RuboCop::AST::NodePattern::Sets::SET__AT_SLICE = T.let(T.unsafe(nil), Set)
RuboCop::AST::NodePattern::Sets::SET__EQL_ = T.let(T.unsafe(nil), Set)
RuboCop::AST::NodePattern::Sets::SET__EQUAL_EQL = T.let(T.unsafe(nil), Set)
RuboCop::AST::NodePattern::Sets::SET__GLOB = T.let(T.unsafe(nil), Set)
@ -1606,6 +1607,8 @@ RuboCop::AST::NodePattern::Sets::SET___7 = T.let(T.unsafe(nil), Set)
RuboCop::AST::NodePattern::Sets::SET___8 = T.let(T.unsafe(nil), Set)
RuboCop::AST::NodePattern::Sets::SET___EQL = T.let(T.unsafe(nil), Set)
RuboCop::AST::NodePattern::Sets::SET___METHOD_____CALLEE__ = T.let(T.unsafe(nil), Set)
RuboCop::AST::NodePattern::Sets::SET____ = T.let(T.unsafe(nil), Set)
@ -1926,6 +1929,7 @@ module RuboCop::AST::Traversal
def on_ivar(node); end
def on_ivasgn(node); end
def on_kwarg(node); end
def on_kwargs(node); end
def on_kwbegin(node); end
def on_kwnilarg(node); end
def on_kwoptarg(node); end
@ -1939,6 +1943,8 @@ module RuboCop::AST::Traversal
def on_match_as(node); end
def on_match_current_line(node); end
def on_match_nil_pattern(node); end
def on_match_pattern(node); end
def on_match_pattern_p(node); end
def on_match_rest(node); end
def on_match_var(node); end
def on_match_with_lvasgn(node); end

View File

@ -13124,6 +13124,7 @@ class Object
CROSS_COMPILING = ::T.let(nil, ::T.untyped)
DEPRECATED_OFFICIAL_TAPS = ::T.let(nil, ::T.untyped)
ENV = ::T.let(nil, ::T.untyped)
FORMULA_COMPONENT_PRECEDENCE_LIST = ::T.let(nil, ::T.untyped)
HOMEBREW_BOTTLE_DEFAULT_DOMAIN = ::T.let(nil, ::T.untyped)
HOMEBREW_BREW_DEFAULT_GIT_REMOTE = ::T.let(nil, ::T.untyped)
HOMEBREW_BREW_FILE = ::T.let(nil, ::T.untyped)
@ -27690,12 +27691,6 @@ class RuboCop::AST::Node
def key_node(param0=T.unsafe(nil)); end
def kwargs_type?(); end
def match_pattern_p_type?(); end
def match_pattern_type?(); end
def method_node(param0=T.unsafe(nil)); end
def val_node(param0=T.unsafe(nil)); end
@ -27711,15 +27706,6 @@ module RuboCop::AST::NodePattern::Sets
SET_INCLUDE_WITH_WITHOUT = ::T.let(nil, ::T.untyped)
SET_SYSTEM_SHELL_OUTPUT_PIPE_OUTPUT = ::T.let(nil, ::T.untyped)
SET_WITH_WITHOUT = ::T.let(nil, ::T.untyped)
SET___EQL = ::T.let(nil, ::T.untyped)
end
module RuboCop::AST::Traversal
def on_kwargs(node); end
def on_match_pattern(node); end
def on_match_pattern_p(node); end
end
class RuboCop::Cask::AST::CaskHeader