CodeQL library for Ruby
codeql/ruby-all 0.8.15-dev (changelog, source)
Search

Member predicate Method::isSetter

Holds if this is a setter method, as in the following example:

class Person
  def name=(n)
    @name = n
  end
end
predicate isSetter()