UNPKG

@bitloops/bl-transpiler

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