Skip to content

Commit

Permalink
fix(literalmap): remove debugger statement
Browse files Browse the repository at this point in the history
  • Loading branch information
relative committed Oct 17, 2023
1 parent 785d700 commit dd55998
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/transformers/literalmap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ export default class LiteralMap extends Transformer<LiteralMapOptions> {
if (!scope) return

for (const v of scope.variables) {
if (/*func.start === 3547 && */ v.name === 'q') debugger
if (v.name === 'arguments') continue
if (v.identifiers.length !== 1) continue // ?
if (v.defs.length !== 1) continue // ?
Expand Down

0 comments on commit dd55998

Please sign in to comment.