Minor: Remove unused argument from readToken_slash
Possible dev relic. readToken_slash currently does not have any arguments and does not appear to look at arguments. All existing tests pass after removal of extraneous argument while calling readToken_slash.
This commit is contained in:
parent
5dcd50447b
commit
dccd45528a
2
acorn.js
2
acorn.js
@ -700,7 +700,7 @@
|
|||||||
// of the type given by its first argument.
|
// of the type given by its first argument.
|
||||||
|
|
||||||
case 47: // '/'
|
case 47: // '/'
|
||||||
return readToken_slash(code);
|
return readToken_slash();
|
||||||
|
|
||||||
case 37: case 42: // '%*'
|
case 37: case 42: // '%*'
|
||||||
return readToken_mult_modulo();
|
return readToken_mult_modulo();
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user