Sha256: dda5d7345a260936483cea383ad7968c30fef2926185dcec6ee850c94352a4bc
Contents?: true
Size: 594 Bytes
Versions: 18
Compression:
Stored size: 594 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop # Common functionality for safe assignment. By safe assignment we mean # putting parentheses around an assignment to indicate "I know I'm using an # assignment as a condition. It's not a mistake." module SafeAssignment extend NodePattern::Macros def_node_matcher :empty_condition?, '(begin)' def_node_matcher :safe_assignment?, '(begin {equals_asgn? asgn_method_call?})' def safe_assignment_allowed? cop_config['AllowSafeAssignment'] end end end end
Version data entries
18 entries across 18 versions & 2 rubygems