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
it 'reproduces issue that SpaceInsideParens does not catch space on LHS parens' do
inspect_source(cop, ['test = ( 4 * 60 * 60)'])
expect(cop.messages).not_to be_empty
end
I suspect there's some sort of parse issue with SurroundingSpace but haven't had a chance to investigate/debug further
The text was updated successfully, but these errors were encountered:
No, it's just that different kinds of left parentheses (method call, expression grouping) are represented by different tokens. We only support one currently.
Test case to reproduce:
I suspect there's some sort of parse issue with SurroundingSpace but haven't had a chance to investigate/debug further
The text was updated successfully, but these errors were encountered: