@keymanapp/kmc-ldml 17.0.299-beta → 17.0.301-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/build/src/compiler/compiler.js +309 -308
  2. package/build/src/compiler/compiler.js.map +1 -1
  3. package/build/src/compiler/disp.js +84 -83
  4. package/build/src/compiler/disp.js.map +1 -1
  5. package/build/src/compiler/empty-compiler.js +116 -115
  6. package/build/src/compiler/empty-compiler.js.map +1 -1
  7. package/build/src/compiler/keymanweb-compiler.js +97 -96
  8. package/build/src/compiler/keymanweb-compiler.js.map +1 -1
  9. package/build/src/compiler/keys.js +419 -418
  10. package/build/src/compiler/keys.js.map +1 -1
  11. package/build/src/compiler/layr.js +83 -82
  12. package/build/src/compiler/layr.js.map +1 -1
  13. package/build/src/compiler/ldml-compiler-options.js +5 -4
  14. package/build/src/compiler/ldml-compiler-options.js.map +1 -1
  15. package/build/src/compiler/loca.js +61 -60
  16. package/build/src/compiler/loca.js.map +1 -1
  17. package/build/src/compiler/messages.js +120 -119
  18. package/build/src/compiler/messages.js.map +1 -1
  19. package/build/src/compiler/meta.js +57 -56
  20. package/build/src/compiler/meta.js.map +1 -1
  21. package/build/src/compiler/metadata-compiler.js +49 -48
  22. package/build/src/compiler/metadata-compiler.js.map +1 -1
  23. package/build/src/compiler/section-compiler.js +42 -41
  24. package/build/src/compiler/section-compiler.js.map +1 -1
  25. package/build/src/compiler/substitution-tracker.js +105 -104
  26. package/build/src/compiler/substitution-tracker.js.map +1 -1
  27. package/build/src/compiler/touch-layout-compiler.js +93 -92
  28. package/build/src/compiler/touch-layout-compiler.js.map +1 -1
  29. package/build/src/compiler/tran.js +382 -381
  30. package/build/src/compiler/tran.js.map +1 -1
  31. package/build/src/compiler/vars.js +236 -235
  32. package/build/src/compiler/vars.js.map +1 -1
  33. package/build/src/compiler/visual-keyboard-compiler.js +70 -69
  34. package/build/src/compiler/visual-keyboard-compiler.js.map +1 -1
  35. package/build/src/main.js +5 -4
  36. package/build/src/main.js.map +1 -1
  37. package/build/src/util/util.js +185 -184
  38. package/build/src/util/util.js.map +1 -1
  39. package/package.json +6 -6
@@ -1,120 +1,121 @@
1
- !function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="6905e5d8-fba8-53f2-9811-7b4c4173fa62")}catch(e){}}();
2
- import { util, CompilerErrorNamespace, CompilerErrorSeverity, CompilerMessageSpec as m, CompilerMessageDef as def } from "@keymanapp/common-types";
3
- // const SevInfo = CompilerErrorSeverity.Info | CompilerErrorNamespace.LdmlKeyboardCompiler;
4
- const SevHint = CompilerErrorSeverity.Hint | CompilerErrorNamespace.LdmlKeyboardCompiler;
5
- const SevWarn = CompilerErrorSeverity.Warn | CompilerErrorNamespace.LdmlKeyboardCompiler;
6
- const SevError = CompilerErrorSeverity.Error | CompilerErrorNamespace.LdmlKeyboardCompiler;
7
- // const SevFatal = CompilerErrorSeverity.Fatal | CompilerErrorNamespace.LdmlKeyboardCompiler;
8
- // sub-numberspace for transform errors
9
- const SevErrorTransform = SevError | 0xF00;
10
- /**
11
- * @internal
12
- */
13
- export class CompilerMessages {
14
- static HINT_NormalizationDisabled = SevHint | 0x0001;
15
- static Hint_NormalizationDisabled = () => m(this.HINT_NormalizationDisabled, `normalization=disabled is not recommended.`);
16
- static ERROR_InvalidLocale = SevError | 0x0002;
17
- static Error_InvalidLocale = (o) => m(this.ERROR_InvalidLocale, `Invalid BCP 47 locale form '${def(o.tag)}'`);
18
- static ERROR_HardwareLayerHasTooManyRows = SevError | 0x0003;
19
- static Error_HardwareLayerHasTooManyRows = () => m(this.ERROR_HardwareLayerHasTooManyRows, `'hardware' layer has too many rows`);
20
- static ERROR_RowOnHardwareLayerHasTooManyKeys = SevError | 0x0004;
21
- static Error_RowOnHardwareLayerHasTooManyKeys = (o) => m(this.ERROR_RowOnHardwareLayerHasTooManyKeys, `Row #${def(o.row)} on 'hardware' ${def(o.hardware)} layer for modifier ${o.modifiers || 'none'} has too many keys`);
22
- static ERROR_KeyNotFoundInKeyBag = SevError | 0x0005;
23
- static Error_KeyNotFoundInKeyBag = (o) => m(this.ERROR_KeyNotFoundInKeyBag, `Key '${def(o.keyId)}' in position #${def(o.col)} on row #${def(o.row)} of layer ${def(o.layer)}, form '${def(o.form)}' not found in key bag`);
24
- static HINT_OneOrMoreRepeatedLocales = SevHint | 0x0006;
25
- static Hint_OneOrMoreRepeatedLocales = () => m(this.HINT_OneOrMoreRepeatedLocales, `After minimization, one or more locales is repeated and has been removed`);
26
- static ERROR_InvalidFile = SevError | 0x0007;
27
- static Error_InvalidFile = (o) => m(this.ERROR_InvalidFile, `The source file has an invalid structure: ${def(o.errorText)}`);
28
- static HINT_LocaleIsNotMinimalAndClean = SevHint | 0x0008;
29
- static Hint_LocaleIsNotMinimalAndClean = (o) => m(this.HINT_LocaleIsNotMinimalAndClean, `Locale '${def(o.sourceLocale)}' is not minimal or correctly formatted and should be '${def(o.locale)}'`);
30
- static ERROR_InvalidScanCode = SevError | 0x0009;
31
- static Error_InvalidScanCode = (o) => m(this.ERROR_InvalidScanCode, `Form '${def(o.form)}' has invalid/unknown scancodes '${def(o.codes?.join(' '))}'`);
32
- static WARN_CustomForm = SevWarn | 0x000A;
33
- static Warn_CustomForm = (o) => m(this.WARN_CustomForm, `Custom <form id="${def(o.id)}"> element. Key layout may not be as expected.`);
34
- static ERROR_GestureKeyNotFoundInKeyBag = SevError | 0x000B;
35
- static Error_GestureKeyNotFoundInKeyBag = (o) => m(this.ERROR_GestureKeyNotFoundInKeyBag, `Key '${def(o.keyId)}' not found in key bag, referenced from other '${def(o.parentKeyId)}' in ${def(o.attribute)}`);
36
- // 0x000C - available
37
- static ERROR_InvalidVersion = SevError | 0x000D;
38
- static Error_InvalidVersion = (o) => m(this.ERROR_InvalidVersion, `Version number '${def(o.version)}' must be a semantic version format string.`);
39
- static ERROR_MustBeAtLeastOneLayerElement = SevError | 0x000E;
40
- static Error_MustBeAtLeastOneLayerElement = () => m(this.ERROR_MustBeAtLeastOneLayerElement, `The source file must contain at least one layer element.`);
41
- // 0x000F - available
42
- /** annotate the to= or id= entry */
43
- static outputOrKeyId(o) {
44
- if (o.output && o.keyId) {
45
- return `output='${o.output}' keyId='${o.keyId}'`;
46
- }
47
- else if (o.keyId) {
48
- return `keyId='${o.keyId}'`;
49
- }
50
- else if (o.output) {
51
- return `output='${o.output}'`;
52
- }
53
- else {
54
- return '';
55
- }
56
- }
57
- static ERROR_DisplayIsRepeated = SevError | 0x0010;
58
- static Error_DisplayIsRepeated = (o) => m(this.ERROR_DisplayIsRepeated, `display ${CompilerMessages.outputOrKeyId(o)} has more than one display entry.`);
59
- static ERROR_KeyMissingToGapOrSwitch = SevError | 0x0011;
60
- static Error_KeyMissingToGapOrSwitch = (o) => m(this.ERROR_KeyMissingToGapOrSwitch, `key id='${def(o.keyId)}' must have either output=, gap=, or layerId=.`);
61
- static ERROR_ExcessHardware = SevError | 0x0012;
62
- static Error_ExcessHardware = (o) => m(this.ERROR_ExcessHardware, `layers formId=${def(o.formId)}: Can only have one non-'touch' element`);
63
- static ERROR_InvalidHardware = SevError | 0x0013;
64
- static Error_InvalidHardware = (o) => m(this.ERROR_InvalidHardware, `layers has invalid value formId=${def(o.formId)}`);
65
- static ERROR_InvalidModifier = SevError | 0x0014;
66
- static Error_InvalidModifier = (o) => m(this.ERROR_InvalidModifier, `layer has invalid modifiers='${def(o.modifiers)}' on layer id=${def(o.layer)}`);
67
- static ERROR_MissingFlicks = SevError | 0x0015;
68
- static Error_MissingFlicks = (o) => m(this.ERROR_MissingFlicks, `key id=${def(o.id)} refers to missing flickId=${def(o.flickId)}`);
69
- static ERROR_DuplicateVariable = SevError | 0x0016;
70
- static Error_DuplicateVariable = (o) => m(this.ERROR_DuplicateVariable, `duplicate variables: id=${def(o.ids)}`);
71
- // Not hit due to XML parsing
72
- static ERROR_InvalidTransformsType = SevError | 0x0018;
73
- static Error_InvalidTransformsType = (o) => m(this.ERROR_InvalidTransformsType, `Invalid transforms types: '${def(o.types?.join(','))}'`);
74
- static ERROR_DuplicateTransformsType = SevError | 0x0019;
75
- static Error_DuplicateTransformsType = (o) => m(this.ERROR_DuplicateTransformsType, `Duplicate transforms types: '${def(o.types?.join(','))}'`);
76
- static ERROR_MixedTransformGroup = SevError | 0x001A;
77
- static Error_MixedTransformGroup = () => m(this.ERROR_MixedTransformGroup, `transformGroup cannot contain both reorder and transform elements`);
78
- static ERROR_EmptyTransformGroup = SevError | 0x001B;
79
- static Error_EmptyTransformGroup = () => m(this.ERROR_EmptyTransformGroup, `transformGroup must have either reorder or transform elements`);
80
- static ERROR_MissingStringVariable = SevError | 0x001C;
81
- static Error_MissingStringVariable = (o) => m(this.ERROR_MissingStringVariable, `Reference to undefined string variable: \${${def(o.id)}}`);
82
- static ERROR_MissingSetVariable = SevError | 0x001D;
83
- static Error_MissingSetVariable = (o) => m(this.ERROR_MissingSetVariable, `Reference to undefined set variable: \$[${def(o.id)}]`);
84
- static ERROR_MissingUnicodeSetVariable = SevError | 0x001E;
85
- static Error_MissingUnicodeSetVariable = (o) => m(this.ERROR_MissingUnicodeSetVariable, `Reference to undefined UnicodeSet variable: \$[${def(o.id)}]`);
86
- static ERROR_NeedSpacesBetweenSetVariables = SevError | 0x001F;
87
- static Error_NeedSpacesBetweenSetVariables = (o) => m(this.ERROR_NeedSpacesBetweenSetVariables, `Need spaces between set variables: ${def(o.item)}`);
88
- static ERROR_CantReferenceSetFromUnicodeSet = SevError | 0x0020;
89
- static Error_CantReferenceSetFromUnicodeSet = (o) => m(this.ERROR_CantReferenceSetFromUnicodeSet, `Illegal use of set variable from within UnicodeSet: \$[${def(o.id)}]`);
90
- static ERROR_MissingMarkers = SevError | 0x0021;
91
- static Error_MissingMarkers = (o) => m(this.ERROR_MissingMarkers, `Markers used for matching but not defined: ${def(o.ids?.join(','))}`);
92
- static ERROR_DisplayNeedsToOrId = SevError | 0x0022;
93
- static Error_DisplayNeedsToOrId = (o) => m(this.ERROR_DisplayNeedsToOrId, `display ${CompilerMessages.outputOrKeyId(o)} needs output= or keyId=, but not both`);
94
- static HINT_PUACharacters = SevHint | 0x0023;
95
- static Hint_PUACharacters = (o) => m(this.HINT_PUACharacters, `File contains ${def(o.count)} PUA character(s), including ${util.describeCodepoint(o.lowestCh)}`);
96
- static WARN_UnassignedCharacters = SevWarn | 0x0024;
97
- static Warn_UnassignedCharacters = (o) => m(this.WARN_UnassignedCharacters, `File contains ${def(o.count)} unassigned character(s), including ${util.describeCodepoint(o.lowestCh)}`);
98
- static ERROR_IllegalCharacters = SevError | 0x0025;
99
- static Error_IllegalCharacters = (o) => m(this.ERROR_IllegalCharacters, `File contains ${def(o.count)} illegal character(s), including ${util.describeCodepoint(o.lowestCh)}`);
100
- static HINT_CharClassImplicitDenorm = SevHint | 0x0026;
101
- static Hint_CharClassImplicitDenorm = (o) => m(this.HINT_CharClassImplicitDenorm, `File has character classes which span non-NFD character(s), including ${util.describeCodepoint(o.lowestCh)}. These will not match any text.`);
102
- static WARN_CharClassExplicitDenorm = SevWarn | 0x0027;
103
- static Warn_CharClassExplicitDenorm = (o) => m(this.WARN_CharClassExplicitDenorm, `File has character classes which include non-NFD characters(s), including ${util.describeCodepoint(o.lowestCh)}. These will not match any text.`);
104
- static ERROR_UnparseableReorderSet = SevError | 0x0028;
105
- static Error_UnparseableReorderSet = (o) => m(this.ERROR_UnparseableReorderSet, `Illegal UnicodeSet "${def(o.set)}" in reorder "${def(o.from)}`);
106
- // Available: 0x029
107
- static ERROR_InvalidQuadEscape = SevError | 0x0030;
108
- static Error_InvalidQuadEscape = (o) => m(this.ERROR_InvalidQuadEscape, `Invalid escape "\\u${util.hexQuad(o?.cp || 0)}". Hint: Use "\\u{${def(o?.cp?.toString(16))}}"`);
109
- //
110
- // Transform syntax errors begin at ...F00 (SevErrorTransform)
111
- // This is a bit of a catch-all and represents messages bubbling up from the underlying regex engine
112
- static ERROR_UnparseableTransformFrom = SevErrorTransform | 0x00;
113
- static Error_UnparseableTransformFrom = (o) => m(this.ERROR_UnparseableTransformFrom, `Invalid transform from="${def(o.from)}": "${def(o.message)}"`);
114
- static ERROR_IllegalTransformDollarsign = SevErrorTransform | 0x01;
115
- static Error_IllegalTransformDollarsign = (o) => m(this.ERROR_IllegalTransformDollarsign, `Invalid transform from="${def(o.from)}": Unescaped dollar-sign ($) is not valid transform syntax.`, '**Hint**: Use `\\$` to match a literal dollar-sign.');
116
- static ERROR_TransformFromMatchesNothing = SevErrorTransform | 0x02;
117
- static Error_TransformFromMatchesNothing = (o) => m(this.ERROR_TransformFromMatchesNothing, `Invalid transfom from="${def(o.from)}": Matches an empty string.`);
118
- }
119
- //# debugId=6905e5d8-fba8-53f2-9811-7b4c4173fa62
1
+
2
+ !function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="f7c514ac-a630-5bb4-9327-0b0ef18d582d")}catch(e){}}();
3
+ import { util, CompilerErrorNamespace, CompilerErrorSeverity, CompilerMessageSpec as m, CompilerMessageDef as def } from "@keymanapp/common-types";
4
+ // const SevInfo = CompilerErrorSeverity.Info | CompilerErrorNamespace.LdmlKeyboardCompiler;
5
+ const SevHint = CompilerErrorSeverity.Hint | CompilerErrorNamespace.LdmlKeyboardCompiler;
6
+ const SevWarn = CompilerErrorSeverity.Warn | CompilerErrorNamespace.LdmlKeyboardCompiler;
7
+ const SevError = CompilerErrorSeverity.Error | CompilerErrorNamespace.LdmlKeyboardCompiler;
8
+ // const SevFatal = CompilerErrorSeverity.Fatal | CompilerErrorNamespace.LdmlKeyboardCompiler;
9
+ // sub-numberspace for transform errors
10
+ const SevErrorTransform = SevError | 0xF00;
11
+ /**
12
+ * @internal
13
+ */
14
+ export class CompilerMessages {
15
+ static HINT_NormalizationDisabled = SevHint | 0x0001;
16
+ static Hint_NormalizationDisabled = () => m(this.HINT_NormalizationDisabled, `normalization=disabled is not recommended.`);
17
+ static ERROR_InvalidLocale = SevError | 0x0002;
18
+ static Error_InvalidLocale = (o) => m(this.ERROR_InvalidLocale, `Invalid BCP 47 locale form '${def(o.tag)}'`);
19
+ static ERROR_HardwareLayerHasTooManyRows = SevError | 0x0003;
20
+ static Error_HardwareLayerHasTooManyRows = () => m(this.ERROR_HardwareLayerHasTooManyRows, `'hardware' layer has too many rows`);
21
+ static ERROR_RowOnHardwareLayerHasTooManyKeys = SevError | 0x0004;
22
+ static Error_RowOnHardwareLayerHasTooManyKeys = (o) => m(this.ERROR_RowOnHardwareLayerHasTooManyKeys, `Row #${def(o.row)} on 'hardware' ${def(o.hardware)} layer for modifier ${o.modifiers || 'none'} has too many keys`);
23
+ static ERROR_KeyNotFoundInKeyBag = SevError | 0x0005;
24
+ static Error_KeyNotFoundInKeyBag = (o) => m(this.ERROR_KeyNotFoundInKeyBag, `Key '${def(o.keyId)}' in position #${def(o.col)} on row #${def(o.row)} of layer ${def(o.layer)}, form '${def(o.form)}' not found in key bag`);
25
+ static HINT_OneOrMoreRepeatedLocales = SevHint | 0x0006;
26
+ static Hint_OneOrMoreRepeatedLocales = () => m(this.HINT_OneOrMoreRepeatedLocales, `After minimization, one or more locales is repeated and has been removed`);
27
+ static ERROR_InvalidFile = SevError | 0x0007;
28
+ static Error_InvalidFile = (o) => m(this.ERROR_InvalidFile, `The source file has an invalid structure: ${def(o.errorText)}`);
29
+ static HINT_LocaleIsNotMinimalAndClean = SevHint | 0x0008;
30
+ static Hint_LocaleIsNotMinimalAndClean = (o) => m(this.HINT_LocaleIsNotMinimalAndClean, `Locale '${def(o.sourceLocale)}' is not minimal or correctly formatted and should be '${def(o.locale)}'`);
31
+ static ERROR_InvalidScanCode = SevError | 0x0009;
32
+ static Error_InvalidScanCode = (o) => m(this.ERROR_InvalidScanCode, `Form '${def(o.form)}' has invalid/unknown scancodes '${def(o.codes?.join(' '))}'`);
33
+ static WARN_CustomForm = SevWarn | 0x000A;
34
+ static Warn_CustomForm = (o) => m(this.WARN_CustomForm, `Custom <form id="${def(o.id)}"> element. Key layout may not be as expected.`);
35
+ static ERROR_GestureKeyNotFoundInKeyBag = SevError | 0x000B;
36
+ static Error_GestureKeyNotFoundInKeyBag = (o) => m(this.ERROR_GestureKeyNotFoundInKeyBag, `Key '${def(o.keyId)}' not found in key bag, referenced from other '${def(o.parentKeyId)}' in ${def(o.attribute)}`);
37
+ // 0x000C - available
38
+ static ERROR_InvalidVersion = SevError | 0x000D;
39
+ static Error_InvalidVersion = (o) => m(this.ERROR_InvalidVersion, `Version number '${def(o.version)}' must be a semantic version format string.`);
40
+ static ERROR_MustBeAtLeastOneLayerElement = SevError | 0x000E;
41
+ static Error_MustBeAtLeastOneLayerElement = () => m(this.ERROR_MustBeAtLeastOneLayerElement, `The source file must contain at least one layer element.`);
42
+ // 0x000F - available
43
+ /** annotate the to= or id= entry */
44
+ static outputOrKeyId(o) {
45
+ if (o.output && o.keyId) {
46
+ return `output='${o.output}' keyId='${o.keyId}'`;
47
+ }
48
+ else if (o.keyId) {
49
+ return `keyId='${o.keyId}'`;
50
+ }
51
+ else if (o.output) {
52
+ return `output='${o.output}'`;
53
+ }
54
+ else {
55
+ return '';
56
+ }
57
+ }
58
+ static ERROR_DisplayIsRepeated = SevError | 0x0010;
59
+ static Error_DisplayIsRepeated = (o) => m(this.ERROR_DisplayIsRepeated, `display ${CompilerMessages.outputOrKeyId(o)} has more than one display entry.`);
60
+ static ERROR_KeyMissingToGapOrSwitch = SevError | 0x0011;
61
+ static Error_KeyMissingToGapOrSwitch = (o) => m(this.ERROR_KeyMissingToGapOrSwitch, `key id='${def(o.keyId)}' must have either output=, gap=, or layerId=.`);
62
+ static ERROR_ExcessHardware = SevError | 0x0012;
63
+ static Error_ExcessHardware = (o) => m(this.ERROR_ExcessHardware, `layers formId=${def(o.formId)}: Can only have one non-'touch' element`);
64
+ static ERROR_InvalidHardware = SevError | 0x0013;
65
+ static Error_InvalidHardware = (o) => m(this.ERROR_InvalidHardware, `layers has invalid value formId=${def(o.formId)}`);
66
+ static ERROR_InvalidModifier = SevError | 0x0014;
67
+ static Error_InvalidModifier = (o) => m(this.ERROR_InvalidModifier, `layer has invalid modifiers='${def(o.modifiers)}' on layer id=${def(o.layer)}`);
68
+ static ERROR_MissingFlicks = SevError | 0x0015;
69
+ static Error_MissingFlicks = (o) => m(this.ERROR_MissingFlicks, `key id=${def(o.id)} refers to missing flickId=${def(o.flickId)}`);
70
+ static ERROR_DuplicateVariable = SevError | 0x0016;
71
+ static Error_DuplicateVariable = (o) => m(this.ERROR_DuplicateVariable, `duplicate variables: id=${def(o.ids)}`);
72
+ // Not hit due to XML parsing
73
+ static ERROR_InvalidTransformsType = SevError | 0x0018;
74
+ static Error_InvalidTransformsType = (o) => m(this.ERROR_InvalidTransformsType, `Invalid transforms types: '${def(o.types?.join(','))}'`);
75
+ static ERROR_DuplicateTransformsType = SevError | 0x0019;
76
+ static Error_DuplicateTransformsType = (o) => m(this.ERROR_DuplicateTransformsType, `Duplicate transforms types: '${def(o.types?.join(','))}'`);
77
+ static ERROR_MixedTransformGroup = SevError | 0x001A;
78
+ static Error_MixedTransformGroup = () => m(this.ERROR_MixedTransformGroup, `transformGroup cannot contain both reorder and transform elements`);
79
+ static ERROR_EmptyTransformGroup = SevError | 0x001B;
80
+ static Error_EmptyTransformGroup = () => m(this.ERROR_EmptyTransformGroup, `transformGroup must have either reorder or transform elements`);
81
+ static ERROR_MissingStringVariable = SevError | 0x001C;
82
+ static Error_MissingStringVariable = (o) => m(this.ERROR_MissingStringVariable, `Reference to undefined string variable: \${${def(o.id)}}`);
83
+ static ERROR_MissingSetVariable = SevError | 0x001D;
84
+ static Error_MissingSetVariable = (o) => m(this.ERROR_MissingSetVariable, `Reference to undefined set variable: \$[${def(o.id)}]`);
85
+ static ERROR_MissingUnicodeSetVariable = SevError | 0x001E;
86
+ static Error_MissingUnicodeSetVariable = (o) => m(this.ERROR_MissingUnicodeSetVariable, `Reference to undefined UnicodeSet variable: \$[${def(o.id)}]`);
87
+ static ERROR_NeedSpacesBetweenSetVariables = SevError | 0x001F;
88
+ static Error_NeedSpacesBetweenSetVariables = (o) => m(this.ERROR_NeedSpacesBetweenSetVariables, `Need spaces between set variables: ${def(o.item)}`);
89
+ static ERROR_CantReferenceSetFromUnicodeSet = SevError | 0x0020;
90
+ static Error_CantReferenceSetFromUnicodeSet = (o) => m(this.ERROR_CantReferenceSetFromUnicodeSet, `Illegal use of set variable from within UnicodeSet: \$[${def(o.id)}]`);
91
+ static ERROR_MissingMarkers = SevError | 0x0021;
92
+ static Error_MissingMarkers = (o) => m(this.ERROR_MissingMarkers, `Markers used for matching but not defined: ${def(o.ids?.join(','))}`);
93
+ static ERROR_DisplayNeedsToOrId = SevError | 0x0022;
94
+ static Error_DisplayNeedsToOrId = (o) => m(this.ERROR_DisplayNeedsToOrId, `display ${CompilerMessages.outputOrKeyId(o)} needs output= or keyId=, but not both`);
95
+ static HINT_PUACharacters = SevHint | 0x0023;
96
+ static Hint_PUACharacters = (o) => m(this.HINT_PUACharacters, `File contains ${def(o.count)} PUA character(s), including ${util.describeCodepoint(o.lowestCh)}`);
97
+ static WARN_UnassignedCharacters = SevWarn | 0x0024;
98
+ static Warn_UnassignedCharacters = (o) => m(this.WARN_UnassignedCharacters, `File contains ${def(o.count)} unassigned character(s), including ${util.describeCodepoint(o.lowestCh)}`);
99
+ static ERROR_IllegalCharacters = SevError | 0x0025;
100
+ static Error_IllegalCharacters = (o) => m(this.ERROR_IllegalCharacters, `File contains ${def(o.count)} illegal character(s), including ${util.describeCodepoint(o.lowestCh)}`);
101
+ static HINT_CharClassImplicitDenorm = SevHint | 0x0026;
102
+ static Hint_CharClassImplicitDenorm = (o) => m(this.HINT_CharClassImplicitDenorm, `File has character classes which span non-NFD character(s), including ${util.describeCodepoint(o.lowestCh)}. These will not match any text.`);
103
+ static WARN_CharClassExplicitDenorm = SevWarn | 0x0027;
104
+ static Warn_CharClassExplicitDenorm = (o) => m(this.WARN_CharClassExplicitDenorm, `File has character classes which include non-NFD characters(s), including ${util.describeCodepoint(o.lowestCh)}. These will not match any text.`);
105
+ static ERROR_UnparseableReorderSet = SevError | 0x0028;
106
+ static Error_UnparseableReorderSet = (o) => m(this.ERROR_UnparseableReorderSet, `Illegal UnicodeSet "${def(o.set)}" in reorder "${def(o.from)}`);
107
+ // Available: 0x029
108
+ static ERROR_InvalidQuadEscape = SevError | 0x0030;
109
+ static Error_InvalidQuadEscape = (o) => m(this.ERROR_InvalidQuadEscape, `Invalid escape "\\u${util.hexQuad(o?.cp || 0)}". Hint: Use "\\u{${def(o?.cp?.toString(16))}}"`);
110
+ //
111
+ // Transform syntax errors begin at ...F00 (SevErrorTransform)
112
+ // This is a bit of a catch-all and represents messages bubbling up from the underlying regex engine
113
+ static ERROR_UnparseableTransformFrom = SevErrorTransform | 0x00;
114
+ static Error_UnparseableTransformFrom = (o) => m(this.ERROR_UnparseableTransformFrom, `Invalid transform from="${def(o.from)}": "${def(o.message)}"`);
115
+ static ERROR_IllegalTransformDollarsign = SevErrorTransform | 0x01;
116
+ static Error_IllegalTransformDollarsign = (o) => m(this.ERROR_IllegalTransformDollarsign, `Invalid transform from="${def(o.from)}": Unescaped dollar-sign ($) is not valid transform syntax.`, '**Hint**: Use `\\$` to match a literal dollar-sign.');
117
+ static ERROR_TransformFromMatchesNothing = SevErrorTransform | 0x02;
118
+ static Error_TransformFromMatchesNothing = (o) => m(this.ERROR_TransformFromMatchesNothing, `Invalid transfom from="${def(o.from)}": Matches an empty string.`);
119
+ }
120
120
  //# sourceMappingURL=messages.js.map
121
+ //# debugId=f7c514ac-a630-5bb4-9327-0b0ef18d582d
@@ -1 +1 @@
1
- {"debug_id":"6905e5d8-fba8-53f2-9811-7b4c4173fa62","file":"messages.js","mappings":"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","names":[],"sourceRoot":"","sources":["../../../src/compiler/messages.ts"],"version":3}
1
+ {"version":3,"file":"messages.js","sources":["../../../src/compiler/messages.ts"],"sourceRoot":"","names":[],"mappings":";;AAAA,OAAO,EAAE,IAAI,EAAE,sBAAsB,EAAE,qBAAqB,EAAE,mBAAmB,IAAI,CAAC,EAAE,kBAAkB,IAAI,GAAG,EAAE,MAAM,yBAAyB,CAAC;AACnJ,4FAA4F;AAC5F,MAAM,OAAO,GAAG,qBAAqB,CAAC,IAAI,GAAG,sBAAsB,CAAC,oBAAoB,CAAC;AACzF,MAAM,OAAO,GAAG,qBAAqB,CAAC,IAAI,GAAG,sBAAsB,CAAC,oBAAoB,CAAC;AACzF,MAAM,QAAQ,GAAG,qBAAqB,CAAC,KAAK,GAAG,sBAAsB,CAAC,oBAAoB,CAAC;AAC3F,8FAA8F;AAE9F,uCAAuC;AACvC,MAAM,iBAAiB,GAAG,QAAQ,GAAG,KAAK,CAAC;AAE3C;;GAEG;AACH,MAAM,OAAO,gBAAgB;IAC3B,MAAM,CAAC,0BAA0B,GAAG,OAAO,GAAG,MAAM,CAAC;IACrD,MAAM,CAAC,0BAA0B,GAAG,GAAG,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,0BAA0B,EAAE,4CAA4C,CAAC,CAAC;IAE3H,MAAM,CAAC,mBAAmB,GAAG,QAAQ,GAAG,MAAM,CAAC;IAC/C,MAAM,CAAC,mBAAmB,GAAG,CAAC,CAAe,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,mBAAmB,EAAE,+BAA+B,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAE5H,MAAM,CAAC,iCAAiC,GAAG,QAAQ,GAAG,MAAM,CAAC;IAC7D,MAAM,CAAC,iCAAiC,GAAG,GAAG,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,iCAAiC,EAAE,oCAAoC,CAAC,CAAC;IAEjI,MAAM,CAAC,sCAAsC,GAAG,QAAQ,GAAG,MAAM,CAAC;IAClE,MAAM,CAAC,sCAAsC,GAAG,CAAC,CAAoD,EAAE,EAAE,CAAE,CAAC,CAAC,IAAI,CAAC,sCAAsC,EAAE,QAAQ,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,kBAAkB,GAAG,CAAC,CAAC,CAAC,QAAQ,CAAC,uBAAuB,CAAC,CAAC,SAAS,IAAI,MAAM,oBAAoB,CAAC,CAAC;IAE/Q,MAAM,CAAC,yBAAyB,GAAG,QAAQ,GAAG,MAAM,CAAC;IACrD,MAAM,CAAC,yBAAyB,GAAG,CAAC,CAAwE,EAAE,EAAE,CAC7G,CAAC,CAAC,IAAI,CAAC,yBAAyB,EAAE,QAAQ,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,YAAY,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,aAAa,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,wBAAwB,CAAC,CAAC;IAEpL,MAAM,CAAC,6BAA6B,GAAG,OAAO,GAAG,MAAM,CAAC;IACxD,MAAM,CAAC,6BAA6B,GAAG,GAAG,EAAE,CAC1C,CAAC,CAAC,IAAI,CAAC,6BAA6B,EAAE,0EAA0E,CAAC,CAAC;IAEpH,MAAM,CAAC,iBAAiB,GAAG,QAAQ,GAAG,MAAM,CAAC;IAC7C,MAAM,CAAC,iBAAiB,GAAG,CAAC,CAAqB,EAAE,EAAE,CACnD,CAAC,CAAC,IAAI,CAAC,iBAAiB,EAAE,6CAA6C,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC;IAE7F,MAAM,CAAC,+BAA+B,GAAG,OAAO,GAAG,MAAM,CAAC;IAC1D,MAAM,CAAC,+BAA+B,GAAG,CAAC,CAAwC,EAAE,EAAE,CACpF,CAAC,CAAC,IAAI,CAAC,+BAA+B,EAAE,WAAW,GAAG,CAAC,CAAC,CAAC,YAAY,CAAC,0DAA0D,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;IAEpJ,MAAM,CAAC,qBAAqB,GAAG,QAAQ,GAAG,MAAM,CAAC;IACjD,MAAM,CAAC,qBAAqB,GAAG,CAAC,CAAmC,EAAE,EAAE,CACvE,CAAC,CAAC,IAAI,CAAC,qBAAqB,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,oCAAoC,GAAG,CAAC,CAAC,CAAC,KAAK,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;IAElH,MAAM,CAAC,eAAe,GAAG,OAAO,GAAG,MAAM,CAAC;IAC1C,MAAM,CAAC,eAAe,GAAG,CAAC,CAAc,EAAE,EAAE,CAC5C,CAAC,CAAC,IAAI,CAAC,eAAe,EAAE,oBAAoB,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,gDAAgD,CAAC,CAAC;IAEvG,MAAM,CAAC,gCAAgC,GAAG,QAAQ,GAAG,MAAM,CAAC;IAC5D,MAAM,CAAC,gCAAgC,GAAG,CAAC,CAAyD,EAAE,EAAE,CACxG,CAAC,CAAC,IAAI,CAAC,gCAAgC,EAAE,QAAQ,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,kDAAkD,GAAG,CAAC,CAAC,CAAC,WAAW,CAAC,QAAQ,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC;IAE7J,qBAAqB;IAErB,MAAM,CAAC,oBAAoB,GAAG,QAAQ,GAAG,MAAM,CAAC;IAChD,MAAM,CAAC,oBAAoB,GAAG,CAAC,CAAmB,EAAE,EAAE,CACpD,CAAC,CAAC,IAAI,CAAC,oBAAoB,EAAE,mBAAmB,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,6CAA6C,CAAC,CAAC;IAE/G,MAAM,CAAC,kCAAkC,GAAG,QAAQ,GAAG,MAAM,CAAC;IAC9D,MAAM,CAAC,kCAAkC,GAAG,GAAG,EAAE,CAC/C,CAAC,CAAC,IAAI,CAAC,kCAAkC,EAAE,0DAA0D,CAAC,CAAC;IAEzG,qBAAqB;IAErB,oCAAoC;IAC5B,MAAM,CAAC,aAAa,CAAC,CAAmC;QAC9D,IAAI,CAAC,CAAC,MAAM,IAAI,CAAC,CAAC,KAAK,EAAE;YACvB,OAAO,WAAW,CAAC,CAAC,MAAM,YAAY,CAAC,CAAC,KAAK,GAAG,CAAC;SAClD;aAAM,IAAG,CAAC,CAAC,KAAK,EAAE;YACjB,OAAO,UAAU,CAAC,CAAC,KAAK,GAAG,CAAC;SAC7B;aAAM,IAAI,CAAC,CAAC,MAAM,EAAE;YACnB,OAAO,WAAW,CAAC,CAAC,MAAM,GAAG,CAAC;SAC/B;aAAM;YACL,OAAO,EAAE,CAAC;SACX;IACH,CAAC;IAED,MAAM,CAAC,uBAAuB,GAAG,QAAQ,GAAG,MAAM,CAAC;IACnD,MAAM,CAAC,uBAAuB,GAAG,CAAC,CAAmC,EAAE,EAAE,CACvE,CAAC,CAAC,IAAI,CAAC,uBAAuB,EAAE,WAAW,gBAAgB,CAAC,aAAa,CAAC,CAAC,CAAC,mCAAmC,CAAC,CAAC;IAEnH,MAAM,CAAC,6BAA6B,GAAG,QAAQ,GAAG,MAAM,CAAC;IACzD,MAAM,CAAC,6BAA6B,GAAG,CAAC,CAAiB,EAAE,EAAE,CAC7D,CAAC,CAAC,IAAI,CAAC,6BAA6B,EAAE,WAAW,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,gDAAgD,CAAC,CAAC;IAE/G,MAAM,CAAC,oBAAoB,GAAG,QAAQ,GAAG,MAAM,CAAC;IAChD,MAAM,CAAC,oBAAoB,GAAG,CAAC,CAAkB,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,EAC/E,iBAAiB,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,yCAAyC,CAAC,CAAC;IAE3E,MAAM,CAAC,qBAAqB,GAAG,QAAQ,GAAG,MAAM,CAAC;IACjD,MAAM,CAAC,qBAAqB,GAAG,CAAC,CAAkB,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,qBAAqB,EACjF,mCAAmC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;IAEtD,MAAM,CAAC,qBAAqB,GAAG,QAAQ,GAAG,MAAM,CAAC;IACjD,MAAM,CAAC,qBAAqB,GAAG,CAAC,CAAoC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,qBAAqB,EACnG,gCAAgC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC,iBAAiB,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;IAEnF,MAAM,CAAC,mBAAmB,GAAG,QAAQ,GAAG,MAAM,CAAC;IAC/C,MAAM,CAAC,mBAAmB,GAAG,CAAC,CAA+B,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,mBAAmB,EAC1F,UAAU,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,8BAA8B,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;IAErE,MAAM,CAAC,uBAAuB,GAAG,QAAQ,GAAG,MAAM,CAAC;IACnD,MAAM,CAAC,uBAAuB,GAAG,CAAC,CAAe,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,uBAAuB,EAChF,2BAA2B,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;IAE7C,6BAA6B;IAC7B,MAAM,CAAC,2BAA2B,GAAG,QAAQ,GAAG,MAAM,CAAC;IACvD,MAAM,CAAC,2BAA2B,GAAG,CAAC,CAAmB,EAAE,EAAE,CAC7D,CAAC,CAAC,IAAI,CAAC,2BAA2B,EAAE,8BAA8B,GAAG,CAAC,CAAC,CAAC,KAAK,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;IAE9F,MAAM,CAAC,6BAA6B,GAAG,QAAQ,GAAG,MAAM,CAAC;IACzD,MAAM,CAAC,6BAA6B,GAAG,CAAC,CAAmB,EAAE,EAAE,CAC/D,CAAC,CAAC,IAAI,CAAC,6BAA6B,EAAE,gCAAgC,GAAG,CAAC,CAAC,CAAC,KAAK,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;IAElG,MAAM,CAAC,yBAAyB,GAAG,QAAQ,GAAG,MAAM,CAAC;IACrD,MAAM,CAAC,yBAAyB,GAAG,GAAG,EAAE,CACxC,CAAC,CAAC,IAAI,CAAC,yBAAyB,EAAE,mEAAmE,CAAC,CAAC;IAEvG,MAAM,CAAC,yBAAyB,GAAG,QAAQ,GAAG,MAAM,CAAC;IACrD,MAAM,CAAC,yBAAyB,GAAG,GAAG,EAAE,CACxC,CAAC,CAAC,IAAI,CAAC,yBAAyB,EAAE,+DAA+D,CAAC,CAAC;IAEnG,MAAM,CAAC,2BAA2B,GAAG,QAAQ,GAAG,MAAM,CAAC;IACvD,MAAM,CAAC,2BAA2B,GAAG,CAAC,CAAc,EAAE,EAAE,CACxD,CAAC,CAAC,IAAI,CAAC,2BAA2B,EAAE,8CAA8C,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC;IAEhG,MAAM,CAAC,wBAAwB,GAAG,QAAQ,GAAG,MAAM,CAAC;IACpD,MAAM,CAAC,wBAAwB,GAAG,CAAC,CAAc,EAAE,EAAE,CACrD,CAAC,CAAC,IAAI,CAAC,wBAAwB,EAAE,2CAA2C,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC;IAE1F,MAAM,CAAC,+BAA+B,GAAG,QAAQ,GAAG,MAAM,CAAC;IAC3D,MAAM,CAAC,+BAA+B,GAAG,CAAC,CAAc,EAAE,EAAE,CAC5D,CAAC,CAAC,IAAI,CAAC,+BAA+B,EAAE,kDAAkD,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC;IAExG,MAAM,CAAC,mCAAmC,GAAG,QAAQ,GAAG,MAAM,CAAC;IAC/D,MAAM,CAAC,mCAAmC,GAAG,CAAC,CAAgB,EAAE,EAAE,CAClE,CAAC,CAAC,IAAI,CAAC,mCAAmC,EAAE,sCAAsC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IAEjG,MAAM,CAAC,oCAAoC,GAAG,QAAQ,GAAG,MAAM,CAAC;IAChE,MAAM,CAAC,oCAAoC,GAAG,CAAC,CAAc,EAAE,EAAE,CACjE,CAAC,CAAC,IAAI,CAAC,oCAAoC,EAAE,0DAA0D,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC;IAErH,MAAM,CAAC,oBAAoB,GAAG,QAAQ,GAAG,MAAM,CAAC;IAChD,MAAM,CAAC,oBAAoB,GAAG,CAAC,CAAoB,EAAE,EAAE,CACvD,CAAC,CAAC,IAAI,CAAC,oBAAoB,EAAE,8CAA8C,GAAG,CAAC,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC;IAEpG,MAAM,CAAC,wBAAwB,GAAG,QAAQ,GAAG,MAAM,CAAC;IACpD,MAAM,CAAC,wBAAwB,GAAG,CAAC,CAAmC,EAAE,EAAE,CAC1E,CAAC,CAAC,IAAI,CAAC,wBAAwB,EAAE,WAAW,gBAAgB,CAAC,aAAa,CAAC,CAAC,CAAC,wCAAwC,CAAC,CAAC;IAEvH,MAAM,CAAC,kBAAkB,GAAG,OAAO,GAAG,MAAM,CAAC;IAC7C,MAAM,CAAC,kBAAkB,GAAG,CAAC,CAAsC,EAAE,EAAE,CACvE,CAAC,CAAC,IAAI,CAAC,kBAAkB,EAAE,iBAAiB,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,gCAAgC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC;IAE9H,MAAM,CAAC,yBAAyB,GAAG,OAAO,GAAG,MAAM,CAAC;IACpD,MAAM,CAAC,yBAAyB,GAAG,CAAC,CAAsC,EAAE,EAAE,CAC9E,CAAC,CAAC,IAAI,CAAC,yBAAyB,EAAE,iBAAiB,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,uCAAuC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC;IAE5I,MAAM,CAAC,uBAAuB,GAAG,QAAQ,GAAG,MAAM,CAAC;IACnD,MAAM,CAAC,uBAAuB,GAAG,CAAC,CAAsC,EAAE,EAAE,CAC5E,CAAC,CAAC,IAAI,CAAC,uBAAuB,EAAE,iBAAiB,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,oCAAoC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC;IAEvI,MAAM,CAAC,4BAA4B,GAAG,OAAO,GAAG,MAAM,CAAC;IACvD,MAAM,CAAC,4BAA4B,GAAG,CAAC,CAAuB,EAAE,EAAE,CAClE,CAAC,CAAC,IAAI,CAAC,4BAA4B,EAAE,yEAAyE,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,QAAQ,CAAC,kCAAkC,CAAC,CAAC;IAEpL,MAAM,CAAC,4BAA4B,GAAG,OAAO,GAAG,MAAM,CAAC;IACvD,MAAM,CAAC,4BAA4B,GAAG,CAAC,CAAuB,EAAE,EAAE,CAClE,CAAC,CAAC,IAAI,CAAC,4BAA4B,EAAE,6EAA6E,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,QAAQ,CAAC,kCAAkC,CAAC,CAAC;IAExL,MAAM,CAAC,2BAA2B,GAAG,QAAQ,GAAG,MAAM,CAAC;IACvD,MAAM,CAAC,2BAA2B,GAAG,CAAC,CAAgC,EAAE,EAAE,CAC1E,CAAC,CAAC,IAAI,CAAC,2BAA2B,EAAE,uBAAuB,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,iBAAiB,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IAErG,mBAAmB;IAEnB,MAAM,CAAC,uBAAuB,GAAG,QAAQ,GAAG,MAAM,CAAC;IACnD,MAAM,CAAC,uBAAuB,GAAG,CAAC,CAAiB,EAAE,EAAE,CACvD,CAAC,CAAC,IAAI,CAAC,uBAAuB,EAAE,sBAAsB,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,EAAE,IAAI,CAAC,CAAC,qBAAqB,GAAG,CAAC,CAAC,EAAE,EAAE,EAAE,QAAQ,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC;IAEjI,EAAE;IACF,8DAA8D;IAE9D,oGAAoG;IACpG,MAAM,CAAC,8BAA8B,GAAK,iBAAiB,GAAG,IAAI,CAAC;IACnE,MAAM,CAAC,8BAA8B,GAAK,CAAC,CAAoC,EAAE,EAAE,CACnF,CAAC,CAAC,IAAI,CAAC,8BAA8B,EAAK,2BAA2B,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;IAE1G,MAAM,CAAC,gCAAgC,GAAG,iBAAiB,GAAG,IAAI,CAAC;IACnE,MAAM,CAAC,gCAAgC,GAAG,CAAC,CAAmB,EAAE,EAAE,CAClE,CAAC,CAAC,IAAI,CAAC,gCAAgC,EAAG,2BAA2B,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,6DAA6D,EACnG,qDAAqD,CAAC,CAAC;IAEjG,MAAM,CAAC,iCAAiC,GAAG,iBAAiB,GAAG,IAAI,CAAC;IACpE,MAAM,CAAC,iCAAiC,GAAG,CAAC,CAAmB,EAAE,EAAE,CACnE,CAAC,CAAC,IAAI,CAAC,iCAAiC,EAAE,0BAA0B,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,6BAA6B,CAAC,CAAC","debug_id":"f7c514ac-a630-5bb4-9327-0b0ef18d582d"}
@@ -1,57 +1,58 @@
1
- !function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="ae31f253-0895-5056-9d1d-369a39a7678c")}catch(e){}}();
2
- import { constants } from "@keymanapp/ldml-keyboard-constants";
3
- import { KMXPlus } from '@keymanapp/common-types';
4
- import { CompilerMessages } from "./messages.js";
5
- import { SectionCompiler } from "./section-compiler.js";
6
- import semver from "semver";
7
- var Meta = KMXPlus.Meta;
8
- var KeyboardSettings = KMXPlus.KeyboardSettings;
9
- export class MetaCompiler extends SectionCompiler {
10
- get id() {
11
- return constants.section.meta;
12
- }
13
- validate() {
14
- let valid = true;
15
- valid &&= this.validateNormalization(this.keyboard3.settings?.normalization);
16
- valid &&= this.validateVersion(this.keyboard3.version?.number);
17
- return valid;
18
- }
19
- validateVersion(versionNumber) {
20
- if (versionNumber !== undefined) {
21
- if (versionNumber.match(/^[=v]/i)) {
22
- // semver ignores a preceding '=' or 'v'
23
- this.callbacks.reportMessage(CompilerMessages.Error_InvalidVersion({ version: versionNumber }));
24
- return false;
25
- }
26
- if (!semver.parse(versionNumber, { loose: false })) {
27
- this.callbacks.reportMessage(CompilerMessages.Error_InvalidVersion({ version: versionNumber }));
28
- return false;
29
- }
30
- }
31
- return true;
32
- }
33
- validateNormalization(normalization) {
34
- if (normalization === 'disabled') {
35
- this.callbacks.reportMessage(CompilerMessages.Hint_NormalizationDisabled());
36
- }
37
- return true;
38
- }
39
- get dependencies() {
40
- const strsOnly = new Set([constants.section.strs]);
41
- return strsOnly;
42
- }
43
- compile(sections) {
44
- let result = new Meta();
45
- result.author = sections.strs.allocString(this.keyboard3.info?.author);
46
- result.conform = sections.strs.allocString(this.keyboard3.conformsTo);
47
- result.layout = sections.strs.allocString(this.keyboard3.info?.layout);
48
- result.name = sections.strs.allocString(this.keyboard3.info?.name);
49
- result.indicator = sections.strs.allocString(this.keyboard3.info?.indicator);
50
- result.version = sections.strs.allocString(this.keyboard3.version?.number ?? "0.0.0");
51
- result.settings =
52
- (this.keyboard3.settings?.normalization == "disabled" ? KeyboardSettings.normalizationDisabled : 0);
53
- return result;
54
- }
55
- }
56
- //# debugId=ae31f253-0895-5056-9d1d-369a39a7678c
1
+
2
+ !function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="68f1e2e7-f50f-5fda-a9d1-8cf78618143d")}catch(e){}}();
3
+ import { constants } from "@keymanapp/ldml-keyboard-constants";
4
+ import { KMXPlus } from '@keymanapp/common-types';
5
+ import { CompilerMessages } from "./messages.js";
6
+ import { SectionCompiler } from "./section-compiler.js";
7
+ import semver from "semver";
8
+ var Meta = KMXPlus.Meta;
9
+ var KeyboardSettings = KMXPlus.KeyboardSettings;
10
+ export class MetaCompiler extends SectionCompiler {
11
+ get id() {
12
+ return constants.section.meta;
13
+ }
14
+ validate() {
15
+ let valid = true;
16
+ valid &&= this.validateNormalization(this.keyboard3.settings?.normalization);
17
+ valid &&= this.validateVersion(this.keyboard3.version?.number);
18
+ return valid;
19
+ }
20
+ validateVersion(versionNumber) {
21
+ if (versionNumber !== undefined) {
22
+ if (versionNumber.match(/^[=v]/i)) {
23
+ // semver ignores a preceding '=' or 'v'
24
+ this.callbacks.reportMessage(CompilerMessages.Error_InvalidVersion({ version: versionNumber }));
25
+ return false;
26
+ }
27
+ if (!semver.parse(versionNumber, { loose: false })) {
28
+ this.callbacks.reportMessage(CompilerMessages.Error_InvalidVersion({ version: versionNumber }));
29
+ return false;
30
+ }
31
+ }
32
+ return true;
33
+ }
34
+ validateNormalization(normalization) {
35
+ if (normalization === 'disabled') {
36
+ this.callbacks.reportMessage(CompilerMessages.Hint_NormalizationDisabled());
37
+ }
38
+ return true;
39
+ }
40
+ get dependencies() {
41
+ const strsOnly = new Set([constants.section.strs]);
42
+ return strsOnly;
43
+ }
44
+ compile(sections) {
45
+ let result = new Meta();
46
+ result.author = sections.strs.allocString(this.keyboard3.info?.author);
47
+ result.conform = sections.strs.allocString(this.keyboard3.conformsTo);
48
+ result.layout = sections.strs.allocString(this.keyboard3.info?.layout);
49
+ result.name = sections.strs.allocString(this.keyboard3.info?.name);
50
+ result.indicator = sections.strs.allocString(this.keyboard3.info?.indicator);
51
+ result.version = sections.strs.allocString(this.keyboard3.version?.number ?? "0.0.0");
52
+ result.settings =
53
+ (this.keyboard3.settings?.normalization == "disabled" ? KeyboardSettings.normalizationDisabled : 0);
54
+ return result;
55
+ }
56
+ }
57
57
  //# sourceMappingURL=meta.js.map
58
+ //# debugId=68f1e2e7-f50f-5fda-a9d1-8cf78618143d
@@ -1 +1 @@
1
- {"debug_id":"ae31f253-0895-5056-9d1d-369a39a7678c","file":"meta.js","mappings":"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","names":[],"sourceRoot":"","sources":["../../../src/compiler/meta.ts"],"version":3}
1
+ {"version":3,"file":"meta.js","sources":["../../../src/compiler/meta.ts"],"sourceRoot":"","names":[],"mappings":"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","debug_id":"68f1e2e7-f50f-5fda-a9d1-8cf78618143d"}
@@ -1,49 +1,50 @@
1
- !function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="7c5b0df9-8089-53fa-ab82-3f3d26cdc8ec")}catch(e){}}();
2
- import { KMX } from '@keymanapp/common-types';
3
- import KEYMAN_VERSION from "@keymanapp/keyman-version";
4
- var KMXFile = KMX.KMXFile;
5
- export class KMXPlusMetadataCompiler {
6
- /**
7
- * Look for metadata fields in the KMXPlus data and copy them
8
- * through to the relevant KMX stores
9
- * @param kmxplus const KMXPlusData
10
- */
11
- static addKmxMetadata(kmxplus, keyboard, options) {
12
- // Order of stores is not significant by kmx spec, but kmxplus compiler will
13
- // always store according to dwSystemID binary order for non-zero
14
- // dwSystemID, then by dpName binary order, and finally by dpString binary
15
- // order
16
- // TSS_NAME = 7
17
- // TSS_COMPILEDVERSION = 20
18
- // TSS_KEYBOARDVERSION = 36
19
- // TSS_TARGETS = 38
20
- // TSS_NAME: User friendly name of keyboard
21
- keyboard.stores.push({
22
- dpName: '&NAME',
23
- dpString: kmxplus.meta?.name?.value ?? 'unknown',
24
- dwSystemID: KMXFile.TSS_NAME
25
- });
26
- if (options.shouldAddCompilerVersion) {
27
- // TSS_COMPILEDVERSION: version of the compiler
28
- keyboard.stores.push({
29
- dpName: '',
30
- dpString: KEYMAN_VERSION.VERSION_WITH_TAG,
31
- dwSystemID: KMXFile.TSS_COMPILEDVERSION
32
- });
33
- }
34
- // TSS_KEYBOARDVERSION: Version of the keyboard, should be semver
35
- keyboard.stores.push({
36
- dpName: '&KEYBOARDVERSION',
37
- dpString: kmxplus.meta?.version?.value ?? '1.0',
38
- dwSystemID: KMXFile.TSS_KEYBOARDVERSION
39
- });
40
- // TSS_TARGETS: which platforms are supported
41
- keyboard.stores.push({
42
- dpName: '&TARGETS',
43
- dpString: 'desktop',
44
- dwSystemID: KMXFile.TSS_TARGETS
45
- });
46
- }
47
- }
48
- //# debugId=7c5b0df9-8089-53fa-ab82-3f3d26cdc8ec
1
+
2
+ !function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="2ea0d6b3-d8b2-57fe-a0d7-11c4f312b694")}catch(e){}}();
3
+ import { KMX } from '@keymanapp/common-types';
4
+ import KEYMAN_VERSION from "@keymanapp/keyman-version";
5
+ var KMXFile = KMX.KMXFile;
6
+ export class KMXPlusMetadataCompiler {
7
+ /**
8
+ * Look for metadata fields in the KMXPlus data and copy them
9
+ * through to the relevant KMX stores
10
+ * @param kmxplus const KMXPlusData
11
+ */
12
+ static addKmxMetadata(kmxplus, keyboard, options) {
13
+ // Order of stores is not significant by kmx spec, but kmxplus compiler will
14
+ // always store according to dwSystemID binary order for non-zero
15
+ // dwSystemID, then by dpName binary order, and finally by dpString binary
16
+ // order
17
+ // TSS_NAME = 7
18
+ // TSS_COMPILEDVERSION = 20
19
+ // TSS_KEYBOARDVERSION = 36
20
+ // TSS_TARGETS = 38
21
+ // TSS_NAME: User friendly name of keyboard
22
+ keyboard.stores.push({
23
+ dpName: '&NAME',
24
+ dpString: kmxplus.meta?.name?.value ?? 'unknown',
25
+ dwSystemID: KMXFile.TSS_NAME
26
+ });
27
+ if (options.shouldAddCompilerVersion) {
28
+ // TSS_COMPILEDVERSION: version of the compiler
29
+ keyboard.stores.push({
30
+ dpName: '',
31
+ dpString: KEYMAN_VERSION.VERSION_WITH_TAG,
32
+ dwSystemID: KMXFile.TSS_COMPILEDVERSION
33
+ });
34
+ }
35
+ // TSS_KEYBOARDVERSION: Version of the keyboard, should be semver
36
+ keyboard.stores.push({
37
+ dpName: '&KEYBOARDVERSION',
38
+ dpString: kmxplus.meta?.version?.value ?? '1.0',
39
+ dwSystemID: KMXFile.TSS_KEYBOARDVERSION
40
+ });
41
+ // TSS_TARGETS: which platforms are supported
42
+ keyboard.stores.push({
43
+ dpName: '&TARGETS',
44
+ dpString: 'desktop',
45
+ dwSystemID: KMXFile.TSS_TARGETS
46
+ });
47
+ }
48
+ }
49
49
  //# sourceMappingURL=metadata-compiler.js.map
50
+ //# debugId=2ea0d6b3-d8b2-57fe-a0d7-11c4f312b694
@@ -1 +1 @@
1
- {"debug_id":"7c5b0df9-8089-53fa-ab82-3f3d26cdc8ec","file":"metadata-compiler.js","mappings":";AAAA,OAAO,EAAE,GAAG,EAAW,MAAM,yBAAyB,CAAC;AAEvD,OAAO,cAAc,MAAM,2BAA2B,CAAC;AAGvD,IAAO,OAAO,GAAG,GAAG,CAAC,OAAO,CAAC;AAG7B,MAAM,OAAO,uBAAuB;IAClC;;;;OAIG;IACI,MAAM,CAAC,cAAc,CAAC,OAAoB,EAAE,QAAkB,EAAE,OAA4B;QACjG,4EAA4E;QAC5E,iEAAiE;QACjE,0EAA0E;QAC1E,QAAQ;QAER,eAAe;QACf,2BAA2B;QAC3B,2BAA2B;QAC3B,mBAAmB;QAEnB,2CAA2C;QAC3C,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC;YACnB,MAAM,EAAE,OAAO;YACf,QAAQ,EAAE,OAAO,CAAC,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,SAAS;YAChD,UAAU,EAAE,OAAO,CAAC,QAAQ;SAC7B,CAAC,CAAC;QAEH,IAAG,OAAO,CAAC,wBAAwB,EAAE;YACnC,+CAA+C;YAC/C,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC;gBACnB,MAAM,EAAE,EAAE;gBACV,QAAQ,EAAE,cAAc,CAAC,gBAAgB;gBACzC,UAAU,EAAE,OAAO,CAAC,mBAAmB;aACxC,CAAC,CAAC;SACJ;QAED,iEAAiE;QACjE,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC;YACnB,MAAM,EAAE,kBAAkB;YAC1B,QAAQ,EAAE,OAAO,CAAC,IAAI,EAAE,OAAO,EAAE,KAAK,IAAI,KAAK;YAC/C,UAAU,EAAE,OAAO,CAAC,mBAAmB;SACxC,CAAC,CAAC;QAEH,6CAA6C;QAC7C,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC;YACnB,MAAM,EAAE,UAAU;YAClB,QAAQ,EAAE,SAAS;YACnB,UAAU,EAAE,OAAO,CAAC,WAAW;SAChC,CAAC,CAAC;IACL,CAAC;CAEF","names":[],"sourceRoot":"","sources":["../../../src/compiler/metadata-compiler.ts"],"version":3}
1
+ {"version":3,"file":"metadata-compiler.js","sources":["../../../src/compiler/metadata-compiler.ts"],"sourceRoot":"","names":[],"mappings":";;AAAA,OAAO,EAAE,GAAG,EAAW,MAAM,yBAAyB,CAAC;AAEvD,OAAO,cAAc,MAAM,2BAA2B,CAAC;AAGvD,IAAO,OAAO,GAAG,GAAG,CAAC,OAAO,CAAC;AAG7B,MAAM,OAAO,uBAAuB;IAClC;;;;OAIG;IACI,MAAM,CAAC,cAAc,CAAC,OAAoB,EAAE,QAAkB,EAAE,OAA4B;QACjG,4EAA4E;QAC5E,iEAAiE;QACjE,0EAA0E;QAC1E,QAAQ;QAER,eAAe;QACf,2BAA2B;QAC3B,2BAA2B;QAC3B,mBAAmB;QAEnB,2CAA2C;QAC3C,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC;YACnB,MAAM,EAAE,OAAO;YACf,QAAQ,EAAE,OAAO,CAAC,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,SAAS;YAChD,UAAU,EAAE,OAAO,CAAC,QAAQ;SAC7B,CAAC,CAAC;QAEH,IAAG,OAAO,CAAC,wBAAwB,EAAE;YACnC,+CAA+C;YAC/C,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC;gBACnB,MAAM,EAAE,EAAE;gBACV,QAAQ,EAAE,cAAc,CAAC,gBAAgB;gBACzC,UAAU,EAAE,OAAO,CAAC,mBAAmB;aACxC,CAAC,CAAC;SACJ;QAED,iEAAiE;QACjE,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC;YACnB,MAAM,EAAE,kBAAkB;YAC1B,QAAQ,EAAE,OAAO,CAAC,IAAI,EAAE,OAAO,EAAE,KAAK,IAAI,KAAK;YAC/C,UAAU,EAAE,OAAO,CAAC,mBAAmB;SACxC,CAAC,CAAC;QAEH,6CAA6C;QAC7C,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC;YACnB,MAAM,EAAE,UAAU;YAClB,QAAQ,EAAE,SAAS;YACnB,UAAU,EAAE,OAAO,CAAC,WAAW;SAChC,CAAC,CAAC;IACL,CAAC;CAEF","debug_id":"2ea0d6b3-d8b2-57fe-a0d7-11c4f312b694"}