class RuboCop::Cop::Style::TernaryParentheses

def unparenthesized_method_call?(child)

def unparenthesized_method_call?(child)
  /^[a-z]/i.match?(method_name(child)) && !child.parenthesized?
end