UNPKG

pip-services4-expressions-node

Version:

Tokenizers, parsers and expression calculators in Node.js / ES2017

43 lines 929 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SyntaxErrorCode = void 0; /** @module calculator */ /** * General syntax errors. */ class SyntaxErrorCode { } exports.SyntaxErrorCode = SyntaxErrorCode; /** * The unknown */ SyntaxErrorCode.Unknown = "UNKNOWN"; /** * The internal error */ SyntaxErrorCode.Internal = "INTERNAL"; /** * The unexpected end. */ SyntaxErrorCode.UnexpectedEnd = "UNEXPECTED_END"; /** * The error near */ SyntaxErrorCode.ErrorNear = "ERROR_NEAR"; /** * The error at */ SyntaxErrorCode.ErrorAt = "ERROR_AT"; /** * The unknown symbol */ SyntaxErrorCode.UnknownSymbol = "UNKNOWN_SYMBOL"; /** * The missed close parenthesis */ SyntaxErrorCode.MissedCloseParenthesis = "MISSED_CLOSE_PARENTHESIS"; /** * The missed close square bracket */ SyntaxErrorCode.MissedCloseSquareBracket = "MISSED_CLOSE_SQUARE_BRACKET"; //# sourceMappingURL=SyntaxErrorCode.js.map