Add support for private_class_method
in the indexer
#2781
Labels
enhancement
New feature or request
good-first-issue
Good for newcomers
rubyconf-hackday
server
This pull request should be included in the server gem's release notes
Very similar to #2653 and how we handle private constants. We need to start taking
private_class_method
into consideration in the indexer.When not using the
class << self
syntax, theprivate
method has no impact whatsoever on the visibility of methods and the only way to mark them as private is by invokingprivate_class_method
.Essentially, we need to:
private_class_method
The text was updated successfully, but these errors were encountered: