UNPKG

@bitloops/bl-transpiler

Version:
8 lines 354 B
import { identifierValidationError } from './index.js'; export const errorIdentifierError = (node, thisSymbolTable) => { const errors = []; if (!thisSymbolTable.has(node.getIdentifierName())) errors.push(new identifierValidationError(node.getIdentifierName(), node)); return errors; }; //# sourceMappingURL=errorIdentifierError.js.map