UNPKG

pip-services4-expressions-node

Version:

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

51 lines 1.11 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MustacheErrorCode = void 0; /** @module mustache */ /** * General syntax errors. */ class MustacheErrorCode { } exports.MustacheErrorCode = MustacheErrorCode; /** * The unknown */ MustacheErrorCode.Unknown = "UNKNOWN"; /** * The internal error */ MustacheErrorCode.Internal = "INTERNAL"; /** * The unexpected end. */ MustacheErrorCode.UnexpectedEnd = "UNEXPECTED_END"; /** * The error near */ MustacheErrorCode.ErrorNear = "ERROR_NEAR"; /** * The error at */ MustacheErrorCode.ErrorAt = "ERROR_AT"; /** * The unexpected symbol */ MustacheErrorCode.UnexpectedSymbol = "UNEXPECTED_SYMBOL"; /** * The mismatched brackets */ MustacheErrorCode.MismatchedBrackets = "MISTMATCHED_BRACKETS"; /** * The missing variable */ MustacheErrorCode.MissingVariable = "MISSING_VARIABLE"; /** * Not closed section */ MustacheErrorCode.NotClosedSection = "NOT_CLOSED_SECTION"; /** * Unexpected section end */ MustacheErrorCode.UnexpectedSectionEnd = "UNEXPECTED_SECTION_END"; //# sourceMappingURL=MustacheErrorCode.js.map