Sha256: 59b7368bac7d2e6296217cbe968bfb9cdf36ab032568b2bfd11446e7f5e1c9aa
Contents?: true
Size: 500 Bytes
Versions: 31
Compression:
Stored size: 500 Bytes
Contents
# frozen_string_literal: true module RuboCop module RSpec # RuboCop-RSpec specific extensions of RuboCop::AST::Node module Node # In various cops we want to regard const as literal althought it's not # strictly literal. def recursive_literal_or_const? case type when :begin, :pair, *AST::Node::COMPOSITE_LITERALS children.all?(&:recursive_literal_or_const?) else literal? || const_type? end end end end end
Version data entries
31 entries across 31 versions & 1 rubygems