Merge pull request #12996 from Homebrew/dependabot/bundler/Library/Homebrew/rbi-0.0.14

build(deps): bump rbi from 0.0.13 to 0.0.14 in /Library/Homebrew
This commit is contained in:
Nanda H Krishna 2022-03-15 15:04:45 -04:00 committed by GitHub
commit 9785c81c06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 26 additions and 3 deletions

View File

@ -85,9 +85,9 @@ GEM
racc (1.6.0)
rack (2.2.3)
rainbow (3.1.1)
rbi (0.0.13)
rbi (0.0.14)
ast
parser
parser (>= 2.6.4.0)
sorbet-runtime (>= 0.5.9204)
unparser
rdiscount (2.2.0.2)

View File

@ -662,6 +662,9 @@ class RBI::Loc
sig { returns(T.nilable(::String)) }
def file; end
sig { returns(T.nilable(::String)) }
def source; end
sig { returns(::String) }
def to_s; end
@ -1903,6 +1906,9 @@ class RBI::TreeBuilder < ::RBI::ASTVisitor
end
def initialize(file:, comments: T.unsafe(nil), nodes_comments_assoc: T.unsafe(nil)); end
sig { returns(T.nilable(::AST::Node)) }
def last_node; end
sig { void }
def post_process; end
@ -2002,6 +2008,17 @@ class RBI::TypeMember < ::RBI::NodeWithComments
def value; end
end
class RBI::UnexpectedParserError < ::StandardError
sig { params(parent_exception: ::Exception, last_location: ::RBI::Loc).void }
def initialize(parent_exception, last_location); end
sig { returns(::RBI::Loc) }
def last_location; end
sig { params(io: T.any(::IO, ::StringIO)).void }
def print_debug(io: T.unsafe(nil)); end
end
RBI::VERSION = T.let(T.unsafe(nil), String)
class RBI::Visibility < ::RBI::NodeWithComments

View File

@ -4204,6 +4204,12 @@ class RBI::Rewriters::RemoveKnownDefinitions::Operation
extend ::T::Private::Methods::SingletonMethodHooks
end
class RBI::UnexpectedParserError
extend ::T::Sig
extend ::T::Private::Methods::MethodHooks
extend ::T::Private::Methods::SingletonMethodHooks
end
class RBI::Visitor
extend ::T::Helpers
extend ::T::Sig

View File

@ -65,7 +65,7 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/plist-3.6.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/pry-0.14.1/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rack-2.2.3/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/unparser-0.6.4/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rbi-0.0.13/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rbi-0.0.14/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/extensions/x86_64-darwin-14/2.6.0-static/rdiscount-2.2.0.2"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rdiscount-2.2.0.2/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rexml-3.2.5/lib"