Sha256: cc95d7d9f11bb98f90995a9bb7405ca6a2c6467b77010f8a11b58f5fdb1b7884
Contents?: true
Size: 1.6 KB
Versions: 10
Compression:
Stored size: 1.6 KB
Contents
# encoding: utf-8 # frozen_string_literal: true module RuboCop module Cop module Lint # Checks for space between a the name of a called method and a left # parenthesis. # # @example # # puts (x + y) class ParenthesesAsGroupedExpression < Cop MSG = '`(...)` interpreted as grouped expression.'.freeze def on_send(node) _receiver, method_name, *args = *node return if args.size > 1 return if operator?(method_name) || node.asgn_method_call? return unless args.first && args.first.source.start_with?('(') space_length = spaces_before_left_parenthesis(node) return unless space_length > 0 expr = args.first.source_range space_range = Parser::Source::Range.new(expr.source_buffer, expr.begin_pos - space_length, expr.begin_pos) add_offense(nil, space_range) end private def spaces_before_left_parenthesis(node) receiver, method_name, _args = *node receiver_length = if receiver receiver.source.length else 0 end without_receiver = node.source[receiver_length..-1] # Escape question mark if any. method_regexp = Regexp.escape(method_name) match = without_receiver.match(/^\s*\.?\s*#{method_regexp}(\s+)\(/) match ? match.captures[0].length : 0 end end end end end
Version data entries
10 entries across 10 versions & 2 rubygems