class YARD::Handlers::Ruby::VisibilityHandler

Handles ‘private’, ‘protected’, and ‘public’ calls.
frozen_string_literal: true

def is_attribute_method?(node)

def is_attribute_method?(node)
  node.type == :command && node.jump(:ident).first.to_s =~ /^attr_(accessor|writer|reader)$/
end