summaryrefslogtreecommitdiff
path: root/node_modules/sucrase/dist/esm/util/getIdentifierNames.js
blob: 5b859017f7e992959fc62efcd7d86c3ba97b7cb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

import {TokenType as tt} from "../parser/tokenizer/types";

/**
 * Get all identifier names in the code, in order, including duplicates.
 */
export default function getIdentifierNames(code, tokens) {
  const names = [];
  for (const token of tokens) {
    if (token.type === tt.name) {
      names.push(code.slice(token.start, token.end));
    }
  }
  return names;
}