Skip to content

Commit

Permalink
chore: simplify variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
theseanl committed Jan 22, 2024
1 parent a79f392 commit cb5bf6a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ export function gobbleArguments(
// We need special behavior for embellishment argspecs.
// Because an embellishment argspec specifies more than one argument,
// we need to keep gobbling arguments until we've got them all.
const { tokens: embellishmentTokens } = spec;
const { tokens } = spec;

const remainingTokens = new Set<string>(embellishmentTokens);
const remainingTokens = new Set<string>(tokens);
const tokenToArgs = new Map<string, Ast.Argument>();

for (;;) {
Expand Down

0 comments on commit cb5bf6a

Please sign in to comment.