You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When yard saw a constant like:
```ruby
FOO = [%w[bar baz]]
```
it cut off the array at the first closing bracket:
```ruby
[%w[bar baz]
```
Fix by ensuring that these types of arrays, which don't have a
starting :lbracket, don't pop off :lbracket state in @Map.
Drop dead code and add a variety of related regression cases found in
my application using sord after trying different fixes.
0 commit comments