Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 1x 1x 1x 1x 2x 1x 1x 1x 1x 4x 4x 4x 1x 1x 1x 1x 2x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /* * Keyman is copyright (C) SIL Global. MIT License. */ import { CompilerErrorNamespace, CompilerErrorSeverity, CompilerMessageDef as def, CompilerMessageSpec as m } from './compiler-interfaces.js'; import { constants } from '@keymanapp/ldml-keyboard-constants'; const CommonTypesErrMask = CompilerErrorNamespace.CommonTypes; // const SevInfo = CompilerErrorSeverity.Info | CommonTypesErrMask; // const SevHint = CompilerErrorSeverity.Hint | CommonTypesErrMask; // const SevWarn = CompilerErrorSeverity.Warn | CommonTypesErrMask; const SevError = CompilerErrorSeverity.Error | CommonTypesErrMask; // const SevFatal = CompilerErrorSeverity.Fatal | CommonTypesErrMask; export class CommonTypesMessages { // structured Ajv validation error static ERROR_SchemaValidationError = SevError | 0x0001; static Error_SchemaValidationError = (o:{instancePath:string, keyword:string, message: string, params: string}) => m(this.ERROR_SchemaValidationError, `Error validating LDML XML file: ${def(o.instancePath)}: ${def(o.keyword)}: ${def(o.message)} ${def(o.params)}`); static ERROR_ImportInvalidBase = SevError | 0x0002; static Error_ImportInvalidBase = (o: { base: string, path: string, subtag: string }) => m(this.ERROR_ImportInvalidBase, `Import element with base ${def(o.base)} is unsupported. Only ${constants.cldr_import_base} or empty (for local) are supported.`); static ERROR_ImportInvalidPath = SevError | 0x0003; static Error_ImportInvalidPath = (o: { base: string, path: string, subtag: string }) => m(this.ERROR_ImportInvalidPath, `Import element with invalid path ${def(o.path)}: expected the form '${constants.cldr_version_latest}/*.xml'`); static ERROR_ImportReadFail = SevError | 0x0004; static Error_ImportReadFail = (o: { base: string, path: string, subtag: string }) => m(this.ERROR_ImportReadFail, `Import could not read data with path ${def(o.path)}`, // for CLDR, give guidance on the suggested path (o.base === constants.cldr_import_base) ? `expected the form '${constants.cldr_version_latest}/*.xml' for ${o.base}` : undefined); static ERROR_ImportWrongRoot = SevError | 0x0005; static Error_ImportWrongRoot = (o: { base: string, path: string, subtag: string }) => m(this.ERROR_ImportWrongRoot, `Invalid import file ${def(o.path)}: expected ${def(o.subtag)} as root element.`); static ERROR_ImportMergeFail = SevError | 0x0006; static Error_ImportMergeFail = (o: { base: string, path: string, subtag: string, subsubtag: string }) => m(this.ERROR_ImportMergeFail, `Problem importing ${def(o.path)}: not sure how to handle non-array ${def(o.subtag)}.${def(o.subsubtag)}`); static ERROR_TestDataUnexpectedArray = SevError | 0x0007; static Error_TestDataUnexpectedArray = (o: {subtag: string}) => m(this.ERROR_TestDataUnexpectedArray, `Problem reading test data: expected single ${def(o.subtag)} element, found multiple`); static ERROR_InvalidXml = SevError | 0x0008; static Error_InvalidXml = (o:{e: any}) => m(this.ERROR_InvalidXml, `The XML file could not be read: ${(o.e ?? '').toString()}`); static ERROR_InvalidPackageFile = SevError | 0x0009; static Error_InvalidPackageFile = (o:{e:any}) => m( this.ERROR_InvalidPackageFile, `Package source file is invalid: ${(o.e ?? 'unknown error').toString()}` ); }; |