UNPKG

@qrvey/formula-lang

Version:

QFormula support for qrvey projects

22 lines 539 B
import { ERROR_LIST } from '../dictionary'; export function getInfo(errorObj) { const messageList = []; const { hint: message, code } = errorObj; messageList.push(message); messageList.push(code); return { errorList, messageList, }; } const errorList = [ { regex: /No operator matches the given name and argument type.*/, value: ERROR_LIST.unknownToken, }, { regex: /42703/, value: ERROR_LIST.unknownToken, }, ]; //# sourceMappingURL=postgresql.js.map