Files
codeql/ruby/ql/lib
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:54 +13:00
2021-10-15 11:47:28 +02:00
2022-08-25 17:21:29 +02:00
2022-09-14 15:30:51 +02:00
2022-02-02 13:29:09 +01:00