Skip to content

Commit

Permalink
Remove unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
dnalborczyk authored and marijnh committed Dec 28, 2022
1 parent a32994a commit 5a376d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acorn/src/expression.js
Original file line number Diff line number Diff line change
Expand Up @@ -1011,7 +1011,7 @@ pp.checkUnreserved = function({start, end, name}) {
// when parsing properties), it will also convert keywords into
// identifiers.

pp.parseIdent = function(liberal, isBinding) {
pp.parseIdent = function(liberal) {
let node = this.startNode()
if (this.type === tt.name) {
node.name = this.value
Expand Down

0 comments on commit 5a376d4

Please sign in to comment.