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
Early on in the sniff code, it is checked if the method has a scope
opener (which is never true if there is no scope closer). So there
always will be at least one token after the scope opener, the scope
closer.
This means that `$next === false` checks are not necessary. `$next` will
never be false.
To be extra careful, a check to confirm that the scope closer is present
was added to the beginning of the sniff.
0 commit comments