Update RBI files for rubocop-ast.
This commit is contained in:
parent
e8c005c177
commit
d30773f81e
@ -278,6 +278,10 @@ class RuboCop::AST::AliasNode < ::RuboCop::AST::Node
|
|||||||
def old_identifier; end
|
def old_identifier; end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
class RuboCop::AST::AndAsgnNode < ::RuboCop::AST::OpAsgnNode
|
||||||
|
def operator; end
|
||||||
|
end
|
||||||
|
|
||||||
class RuboCop::AST::AndNode < ::RuboCop::AST::Node
|
class RuboCop::AST::AndNode < ::RuboCop::AST::Node
|
||||||
include ::RuboCop::AST::BinaryOperatorNode
|
include ::RuboCop::AST::BinaryOperatorNode
|
||||||
include ::RuboCop::AST::PredicateOperatorNode
|
include ::RuboCop::AST::PredicateOperatorNode
|
||||||
@ -309,6 +313,11 @@ end
|
|||||||
|
|
||||||
RuboCop::AST::ArrayNode::PERCENT_LITERAL_TYPES = T.let(T.unsafe(nil), Hash)
|
RuboCop::AST::ArrayNode::PERCENT_LITERAL_TYPES = T.let(T.unsafe(nil), Hash)
|
||||||
|
|
||||||
|
class RuboCop::AST::AsgnNode < ::RuboCop::AST::Node
|
||||||
|
def expression; end
|
||||||
|
def name; end
|
||||||
|
end
|
||||||
|
|
||||||
module RuboCop::AST::BasicLiteralNode
|
module RuboCop::AST::BasicLiteralNode
|
||||||
def value; end
|
def value; end
|
||||||
end
|
end
|
||||||
@ -383,6 +392,12 @@ class RuboCop::AST::CaseNode < ::RuboCop::AST::Node
|
|||||||
def when_branches; end
|
def when_branches; end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
class RuboCop::AST::CasgnNode < ::RuboCop::AST::Node
|
||||||
|
def expression; end
|
||||||
|
def name; end
|
||||||
|
def namespace; end
|
||||||
|
end
|
||||||
|
|
||||||
class RuboCop::AST::ClassNode < ::RuboCop::AST::Node
|
class RuboCop::AST::ClassNode < ::RuboCop::AST::Node
|
||||||
def body; end
|
def body; end
|
||||||
def identifier; end
|
def identifier; end
|
||||||
@ -1771,6 +1786,17 @@ end
|
|||||||
|
|
||||||
RuboCop::AST::NumericNode::SIGN_REGEX = T.let(T.unsafe(nil), Regexp)
|
RuboCop::AST::NumericNode::SIGN_REGEX = T.let(T.unsafe(nil), Regexp)
|
||||||
|
|
||||||
|
class RuboCop::AST::OpAsgnNode < ::RuboCop::AST::Node
|
||||||
|
def assignment_node; end
|
||||||
|
def expression; end
|
||||||
|
def name; end
|
||||||
|
def operator; end
|
||||||
|
end
|
||||||
|
|
||||||
|
class RuboCop::AST::OrAsgnNode < ::RuboCop::AST::OpAsgnNode
|
||||||
|
def operator; end
|
||||||
|
end
|
||||||
|
|
||||||
class RuboCop::AST::OrNode < ::RuboCop::AST::Node
|
class RuboCop::AST::OrNode < ::RuboCop::AST::Node
|
||||||
include ::RuboCop::AST::BinaryOperatorNode
|
include ::RuboCop::AST::BinaryOperatorNode
|
||||||
include ::RuboCop::AST::PredicateOperatorNode
|
include ::RuboCop::AST::PredicateOperatorNode
|
Loading…
x
Reference in New Issue
Block a user