class RuboCop::AST::AndNode
A node extension for `until` nodes. This will be used in place of a plain node when the builder constructs the AST, making its methods available to all `until` nodes within RuboCop.
Public Instance Methods
alternate_operator()
click to toggle source
Returns the alternate operator of the `and` as a string. Returns `and` for `&&` and vice versa.
@return [String] the alternate of the `and` operator
# File lib/rubocop/ast/node/and_node.rb, line 15 def alternate_operator logical_operator? ? SEMANTIC_AND : LOGICAL_AND end
inverse_operator()
click to toggle source
Returns the inverse keyword of the `and` node as a string. Returns `||` for `&&` and `or` for `and`.
@return [String] the inverse of the `and` operator
# File lib/rubocop/ast/node/and_node.rb, line 23 def inverse_operator logical_operator? ? LOGICAL_OR : SEMANTIC_OR end
node_parts()
click to toggle source
Custom destructuring method. This can be used to normalize destructuring for different variations of the node.
@return [Array<Node>] the different parts of the `and` predicate
# File lib/rubocop/ast/node/and_node.rb, line 31 def node_parts to_a end