Files
codeql/ruby/ql/test/library-tests/modules
Harry Maclean 4df7fd248e Ruby: Ensure explicit modifiers take priority
In Ruby, "explicit" visibility modifiers override "implicit" ones. For
example, in the following:

```rb
class C

  private

  def m1
  end

  public m2
  end

  def m3
  end
  public :m3
end
```

`m1` is private whereas `m2` and `m3` are public.
2022-09-27 10:28:23 +13:00
..
2022-09-27 10:22:53 +13:00
2021-10-15 11:47:28 +02:00