@keymanapp/kmc-kmn 18.0.7-alpha → 18.0.9-alpha
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.
- package/README.md +9 -0
- package/build/src/compiler/compiler.d.ts +75 -10
- package/build/src/compiler/compiler.d.ts.map +1 -1
- package/build/src/compiler/compiler.js +60 -11
- package/build/src/compiler/compiler.js.map +1 -1
- package/build/src/compiler/kmn-compiler-messages.d.ts +257 -40
- package/build/src/compiler/kmn-compiler-messages.d.ts.map +1 -1
- package/build/src/compiler/kmn-compiler-messages.js +271 -50
- package/build/src/compiler/kmn-compiler-messages.js.map +1 -1
- package/build/src/import/kmcmplib/wasm-host.js +2 -2
- package/build/src/import/kmcmplib/wasm-host.wasm +0 -0
- package/build/src/kmw-compiler/kmw-compiler-messages.d.ts +10 -84
- package/build/src/kmw-compiler/kmw-compiler-messages.d.ts.map +1 -1
- package/build/src/kmw-compiler/kmw-compiler-messages.js +16 -34
- package/build/src/kmw-compiler/kmw-compiler-messages.js.map +1 -1
- package/build/src/kmw-compiler/validate-layout-file.d.ts +2 -1
- package/build/src/kmw-compiler/validate-layout-file.d.ts.map +1 -1
- package/build/src/kmw-compiler/validate-layout-file.js +5 -4
- package/build/src/kmw-compiler/validate-layout-file.js.map +1 -1
- package/build/src/main.d.ts +5 -1
- package/build/src/main.d.ts.map +1 -1
- package/build/src/main.js +6 -2
- package/build/src/main.js.map +1 -1
- package/package.json +5 -4
|
@@ -1,11 +1,20 @@
|
|
|
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]="
|
|
2
|
-
import { CompilerErrorNamespace, CompilerErrorSeverity, CompilerMessageSpec as m } from "@keymanapp/common-types";
|
|
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]="2b15f3d0-b8ea-58cf-8104-3e8dc6026f90")}catch(e){}}();
|
|
2
|
+
import { CompilerErrorNamespace, CompilerErrorSeverity, CompilerMessageSpec as m, CompilerMessageDef as def, CompilerMessageSpecWithException } from "@keymanapp/common-types";
|
|
3
|
+
import { kmnfile } from "../kmw-compiler/compiler-globals.js";
|
|
3
4
|
const Namespace = CompilerErrorNamespace.KmnCompiler;
|
|
4
5
|
const SevInfo = CompilerErrorSeverity.Info | Namespace;
|
|
5
6
|
const SevHint = CompilerErrorSeverity.Hint | Namespace;
|
|
6
7
|
const SevWarn = CompilerErrorSeverity.Warn | Namespace;
|
|
7
8
|
const SevError = CompilerErrorSeverity.Error | Namespace;
|
|
8
9
|
const SevFatal = CompilerErrorSeverity.Fatal | Namespace;
|
|
10
|
+
// For messages from the KeymanWeb compiler, we need to construct our messages
|
|
11
|
+
// slightly differently. This could be refactored in the future, as it is not
|
|
12
|
+
// obvious which messages should use which function.
|
|
13
|
+
const mw = (code, message, o) => ({
|
|
14
|
+
...m(code, message),
|
|
15
|
+
filename: o?.filename ?? kmnfile,
|
|
16
|
+
line: o?.line,
|
|
17
|
+
});
|
|
9
18
|
/**
|
|
10
19
|
* LogLevel comes from kmn_compiler_errors.h, for legacy compiler error messages
|
|
11
20
|
*/
|
|
@@ -39,220 +48,432 @@ export var KmnCompilerMessageRanges;
|
|
|
39
48
|
KmnCompilerMessageRanges[KmnCompilerMessageRanges["RANGE_CompilerMessage_Min"] = 2304] = "RANGE_CompilerMessage_Min";
|
|
40
49
|
KmnCompilerMessageRanges[KmnCompilerMessageRanges["RANGE_CompilerMessage_Max"] = 4095] = "RANGE_CompilerMessage_Max";
|
|
41
50
|
})(KmnCompilerMessageRanges || (KmnCompilerMessageRanges = {}));
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
51
|
+
/**
|
|
52
|
+
* @internal
|
|
53
|
+
*
|
|
54
|
+
* Error messages reported by the .kmn compiler. The error codes in this class
|
|
55
|
+
* share an address space with messages from kmn_compiler_errors.h, which are
|
|
56
|
+
* generated by kmcmplib, so codes below 0x900 are reserved for kmcmplib
|
|
57
|
+
* messages.
|
|
58
|
+
*
|
|
59
|
+
* The second half of this class defines the messages from kmcmplib. These
|
|
60
|
+
* messages should correspond to codes in kmn_compiler_errors.h, exclusive
|
|
61
|
+
* severity bits. Message text is defined by kmcmplib and passed through a
|
|
62
|
+
* callback at this time. The message text presented here is currently unused
|
|
63
|
+
* during the compilation process, but is used in the `kmc messages` tool and
|
|
64
|
+
* for documentation.
|
|
65
|
+
*
|
|
66
|
+
* `CERR_` messages that are actually fatals have been renamed to `FATAL_`.
|
|
67
|
+
*
|
|
68
|
+
* @example
|
|
69
|
+
*
|
|
70
|
+
* ```
|
|
71
|
+
* kmcmplib.CERR_BadCallParams = CERR_FATAL | 0x002 = 0x8002
|
|
72
|
+
* ERROR_BadCallParams = SevError | 0x0002 = 0x300000 | 0x2000 | 0x002 = 0x302002
|
|
73
|
+
* ```
|
|
74
|
+
*/
|
|
75
|
+
export class KmnCompilerMessages {
|
|
76
|
+
// TODO: v18.0 we should consider moving error message generation in kmcmplib to
|
|
77
|
+
// kmc-kmn, which would avoid a number of legacy issues. Questions about
|
|
78
|
+
// parameterisation.
|
|
49
79
|
static FATAL_UnexpectedException = SevFatal | 0x900;
|
|
50
|
-
static
|
|
80
|
+
static Fatal_UnexpectedException = (o) => CompilerMessageSpecWithException(this.FATAL_UnexpectedException, null, o.e ?? 'unknown error', `Raised when KmnCompiler or one of its components has an internal
|
|
81
|
+
error. If you experience this error, it should be reported to the Keyman
|
|
82
|
+
team for resolution via https://github.com/keymanapp/keyman/issues/new.`);
|
|
51
83
|
static FATAL_MissingWasmModule = SevFatal | 0x901;
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
84
|
+
static Fatal_MissingWasmModule = (o) => CompilerMessageSpecWithException(this.FATAL_MissingWasmModule, `Could not instantiate WASM compiler module or initialization failed`, o.e ?? 'unknown error', `Raised when the kmcmplib component could not be instantiated. This may indicate
|
|
85
|
+
a configuration or dependency issue. Make sure you are running a Javascript
|
|
86
|
+
engine that supports WASM, and that use of WASM is enabled.`);
|
|
87
|
+
// Note: this is now unused
|
|
88
|
+
// static FATAL_UnableToSetCompilerOptions = SevFatal | 0x902;
|
|
89
|
+
// static Fatal_UnableToSetCompilerOptions = () => m(this.FATAL_UnableToSetCompilerOptions, null, `Unable to set compiler options`);
|
|
56
90
|
static FATAL_CallbacksNotSet = SevFatal | 0x903;
|
|
57
|
-
static
|
|
91
|
+
static Fatal_CallbacksNotSet = () => CompilerMessageSpecWithException(this.FATAL_CallbacksNotSet, null, `Callbacks were not set with init`, `Raised when KmnCompiler or one of its components experiences an internal
|
|
92
|
+
error. If you experience this error, it should be reported to the Keyman
|
|
93
|
+
team for resolution via https://github.com/keymanapp/keyman/issues/new.`);
|
|
58
94
|
static FATAL_UnicodeSetOutOfRange = SevFatal | 0x904;
|
|
59
|
-
static
|
|
95
|
+
static Fatal_UnicodeSetOutOfRange = () => CompilerMessageSpecWithException(this.FATAL_UnicodeSetOutOfRange, null, `UnicodeSet buffer was too small`, `Raised when caller to UnicodeSet functions provides an invalid buffer. If
|
|
96
|
+
you experience this error, it should be reported to the Keyman team for
|
|
97
|
+
resolution via https://github.com/keymanapp/keyman/issues/new.`);
|
|
98
|
+
// TODO: rename the following functions to Error_UsetHasStrings etc
|
|
60
99
|
static ERROR_UnicodeSetHasStrings = SevError | 0x905;
|
|
61
|
-
static
|
|
100
|
+
static Error_UnicodeSetHasStrings = () => m(this.ERROR_UnicodeSetHasStrings, `uset contains strings, not allowed`, `The provided uset uses multi-character strings, (\`{}\` notation, e.g.
|
|
101
|
+
\`[żġħ{ie}{għ}]\`. ). Although full UnicodeSets support strings, LDML
|
|
102
|
+
keyboards do not support multi-character strings in usets. To resolve this,
|
|
103
|
+
reformat the uset to avoid the use of multi-character strings.
|
|
104
|
+
|
|
105
|
+
More on uset: https://www.unicode.org/reports/tr35/tr35-keyboards.html#element-uset`);
|
|
62
106
|
static ERROR_UnicodeSetHasProperties = SevError | 0x906;
|
|
63
|
-
static
|
|
107
|
+
static Error_UnicodeSetHasProperties = () => m(this.ERROR_UnicodeSetHasProperties, `uset contains properties, not allowed`, `The provided uset uses property notation (\`\\p{…}\` or \`[:…:]\`). LDML
|
|
108
|
+
keyboards do not support Unicode properties in usets, because that would
|
|
109
|
+
make implementations dependent on a particular version of Unicode. To
|
|
110
|
+
resolve this, reformat the uset to avoid the use of properties.
|
|
111
|
+
|
|
112
|
+
More on uset: https://www.unicode.org/reports/tr35/tr35-keyboards.html#element-uset`);
|
|
64
113
|
static ERROR_UnicodeSetSyntaxError = SevError | 0x907;
|
|
65
|
-
static
|
|
114
|
+
static Error_UnicodeSetSyntaxError = () => m(this.ERROR_UnicodeSetSyntaxError, `uset had a Syntax Error while parsing`, `The provided uset has a syntax error and could not be parsed. Verify the
|
|
115
|
+
format of the uset against the specification.
|
|
116
|
+
|
|
117
|
+
More on uset: https://www.unicode.org/reports/tr35/tr35-keyboards.html#element-uset`);
|
|
66
118
|
static ERROR_InvalidKvksFile = SevError | 0x908;
|
|
67
|
-
static
|
|
119
|
+
static Error_InvalidKvksFile = (o) => m(this.ERROR_InvalidKvksFile, `Error encountered parsing ${def(o.filename)}: ${o.e ?? 'unknown error'}`, // Note, not fatal, not reporting to Sentry
|
|
120
|
+
`The .kvks file could not be parsed because it was not a valid XML file.
|
|
121
|
+
There may be additional information in the error message to help you
|
|
122
|
+
resolve the error.
|
|
123
|
+
|
|
124
|
+
More on .kvks file format: https://help.keyman.com/developer/current-version/reference/file-types/kvks`);
|
|
68
125
|
static WARN_InvalidVkeyInKvksFile = SevWarn | 0x909;
|
|
69
|
-
static
|
|
126
|
+
static Warn_InvalidVkeyInKvksFile = (o) => m(this.WARN_InvalidVkeyInKvksFile, `Invalid virtual key ${def(o.invalidVkey)} found in ${def(o.filename)}`, `The .kvks file contained a virtual key that was not supported by
|
|
127
|
+
Keyman. Remove this virtual key from the .kvks file.
|
|
128
|
+
|
|
129
|
+
Supported virtual keys: https://help.keyman.com/developer/language/guide/virtual-keys#common-virtual-key-codes`);
|
|
70
130
|
static ERROR_InvalidDisplayMapFile = SevError | 0x90A;
|
|
71
|
-
static
|
|
131
|
+
static Error_InvalidDisplayMapFile = (o) => m(this.ERROR_InvalidDisplayMapFile, `Error encountered parsing display map ${def(o.filename)}: ${o.e ?? 'unknown error'}`, // Note, not fatal, not reporting to Sentry
|
|
132
|
+
`The displayMap file could not be parsed because it was not a valid JSON
|
|
133
|
+
file. There may be additional information in the error message to help you
|
|
134
|
+
resolve the error.
|
|
135
|
+
|
|
136
|
+
More on displayMap: https://help.keyman.com/developer/language/reference/displaymap`);
|
|
72
137
|
static ERROR_InvalidKvkFile = SevError | 0x90B;
|
|
73
|
-
static
|
|
138
|
+
static Error_InvalidKvkFile = (o) => m(this.ERROR_InvalidKvkFile, `Error encountered loading ${def(o.filename)}: ${o.e ?? 'unknown error'}`, // Note, not fatal, not reporting to Sentry
|
|
139
|
+
`The .kvk file could not be loaded because it was not a valid format. There
|
|
140
|
+
may be additional information in the error message to help you resolve the
|
|
141
|
+
error.
|
|
142
|
+
|
|
143
|
+
More on .kvk files: https://help.keyman.com/developer/current-version/reference/file-types/kvk`);
|
|
74
144
|
static ERROR_FileNotFound = SevError | 0x90C;
|
|
75
|
-
}
|
|
76
|
-
;
|
|
77
|
-
|
|
78
|
-
* This class defines messages from kmcmplib. They should correspond to codes in
|
|
79
|
-
* kmn_compiler_errors.h, exclusive severity bits. For example:
|
|
80
|
-
*
|
|
81
|
-
* ```
|
|
82
|
-
* kmcmplib.CERR_BadCallParams = CERR_FATAL | 0x002 = 0x8002
|
|
83
|
-
* ERROR_BadCallParams = SevError | 0x0002 = 0x300000 | 0x2000 | 0x002 = 0x302002
|
|
84
|
-
* ```
|
|
85
|
-
*
|
|
86
|
-
* CERR_ messages that are actually fatals have been renamed to FATAL_.
|
|
87
|
-
*
|
|
88
|
-
* Message text is defined by kmcmplib and passed through a callback.
|
|
89
|
-
*/
|
|
90
|
-
export class KmnCompilerMessages {
|
|
91
|
-
static INFO_None = SevInfo | 0x000;
|
|
145
|
+
static Error_FileNotFound = (o) => m(this.ERROR_FileNotFound, `File ${def(o.filename)} was not found`, `The file was not found on the disk. Verify that you have the correct path
|
|
146
|
+
to the file.`);
|
|
147
|
+
// static INFO_None = SevInfo | 0x000;
|
|
92
148
|
static INFO_EndOfFile = SevInfo | 0x001;
|
|
149
|
+
static Info_EndOfFile = () => m(this.INFO_EndOfFile, `(no error - reserved code)`);
|
|
93
150
|
static FATAL_BadCallParams = SevFatal | 0x002;
|
|
151
|
+
static Fatal_BadCallParams = () => m(this.FATAL_BadCallParams, `CompileKeyboardFile was called with bad parameters`);
|
|
94
152
|
static FATAL_CannotAllocateMemory = SevFatal | 0x004;
|
|
95
|
-
static
|
|
96
|
-
static
|
|
153
|
+
static Fatal_CannotAllocateMemory = () => m(this.FATAL_CannotAllocateMemory, `Out of memory`);
|
|
154
|
+
static ERROR_InfileNotExist = SevError | 0x005; // #10678: reduced from fatal to error in 17.0
|
|
155
|
+
static Error_InfileNotExist = () => m(this.ERROR_InfileNotExist, `Cannot find the input file`);
|
|
156
|
+
// static ERROR_CannotCreateOutfile = SevError | 0x006; // #10678: reduced from fatal to error in 17.0, but unused
|
|
157
|
+
// static Error_CannotCreateOutfile = () => m(this.ERROR_CannotCreateOutfile, `Cannot open output file for writing`); unused
|
|
97
158
|
static FATAL_UnableToWriteFully = SevFatal | 0x007;
|
|
98
|
-
static
|
|
159
|
+
static Fatal_UnableToWriteFully = () => m(this.FATAL_UnableToWriteFully, `Unable to write the file completely`);
|
|
160
|
+
static ERROR_CannotReadInfile = SevError | 0x008; // #10678: reduced from fatal to error in 17.0
|
|
161
|
+
static Error_CannotReadInfile = () => m(this.ERROR_CannotReadInfile, `Cannot read the input file`);
|
|
99
162
|
static FATAL_SomewhereIGotItWrong = SevFatal | 0x009;
|
|
163
|
+
static Fatal_SomewhereIGotItWrong = () => m(this.FATAL_SomewhereIGotItWrong, `Internal error: contact Keyman`);
|
|
100
164
|
static ERROR_InvalidToken = SevError | 0x00A;
|
|
165
|
+
static Error_InvalidToken = () => m(this.ERROR_InvalidToken, `Invalid token found`);
|
|
166
|
+
// kmcmplib: static Error_InvalidBegin = () => m(this.ERROR_InvalidBegin, `Invalid 'begin' command`);
|
|
101
167
|
static ERROR_InvalidBegin = SevError | 0x00B;
|
|
168
|
+
static Error_InvalidBegin = () => mw(this.ERROR_InvalidBegin, `A "begin unicode" statement is required to compile a KeymanWeb keyboard`);
|
|
102
169
|
static ERROR_InvalidName = SevError | 0x00C;
|
|
170
|
+
static Error_InvalidName = () => m(this.ERROR_InvalidName, `Invalid 'name' command`);
|
|
103
171
|
static ERROR_InvalidVersion = SevError | 0x00D;
|
|
172
|
+
static Error_InvalidVersion = () => m(this.ERROR_InvalidVersion, `Invalid 'version' command`);
|
|
104
173
|
static ERROR_InvalidLanguageLine = SevError | 0x00E;
|
|
174
|
+
static Error_InvalidLanguageLine = () => m(this.ERROR_InvalidLanguageLine, `Invalid 'language' command`);
|
|
105
175
|
static ERROR_LayoutButNoLanguage = SevError | 0x00F;
|
|
176
|
+
static Error_LayoutButNoLanguage = () => m(this.ERROR_LayoutButNoLanguage, `Layout command found but no language command`);
|
|
106
177
|
static ERROR_InvalidLayoutLine = SevError | 0x010;
|
|
178
|
+
static Error_InvalidLayoutLine = () => m(this.ERROR_InvalidLayoutLine, `Invalid 'layout' command`);
|
|
107
179
|
static ERROR_NoVersionLine = SevError | 0x011;
|
|
180
|
+
static Error_NoVersionLine = () => m(this.ERROR_NoVersionLine, `No version line found for file`);
|
|
108
181
|
static ERROR_InvalidGroupLine = SevError | 0x012;
|
|
182
|
+
static Error_InvalidGroupLine = () => m(this.ERROR_InvalidGroupLine, `Invalid 'group' command`);
|
|
109
183
|
static ERROR_InvalidStoreLine = SevError | 0x013;
|
|
184
|
+
static Error_InvalidStoreLine = () => m(this.ERROR_InvalidStoreLine, `Invalid 'store' command`);
|
|
110
185
|
static ERROR_InvalidCodeInKeyPartOfRule = SevError | 0x014;
|
|
186
|
+
static Error_InvalidCodeInKeyPartOfRule = () => m(this.ERROR_InvalidCodeInKeyPartOfRule, `Invalid command or code found in key part of rule`);
|
|
111
187
|
static ERROR_InvalidDeadkey = SevError | 0x015;
|
|
188
|
+
static Error_InvalidDeadkey = () => m(this.ERROR_InvalidDeadkey, `Invalid 'deadkey' or 'dk' command`);
|
|
112
189
|
static ERROR_InvalidValue = SevError | 0x016;
|
|
190
|
+
static Error_InvalidValue = () => m(this.ERROR_InvalidValue, `Invalid value in extended string`);
|
|
113
191
|
static ERROR_ZeroLengthString = SevError | 0x017;
|
|
192
|
+
static Error_ZeroLengthString = () => m(this.ERROR_ZeroLengthString, `A string of zero characters was found`);
|
|
114
193
|
static ERROR_TooManyIndexToKeyRefs = SevError | 0x018;
|
|
194
|
+
static Error_TooManyIndexToKeyRefs = () => m(this.ERROR_TooManyIndexToKeyRefs, `Too many index commands refering to key string`);
|
|
115
195
|
static ERROR_UnterminatedString = SevError | 0x019;
|
|
196
|
+
static Error_UnterminatedString = () => m(this.ERROR_UnterminatedString, `Unterminated string in line`);
|
|
116
197
|
static ERROR_StringInVirtualKeySection = SevError | 0x01A;
|
|
198
|
+
static Error_StringInVirtualKeySection = () => m(this.ERROR_StringInVirtualKeySection, `extend string illegal in virtual key section`);
|
|
117
199
|
static ERROR_AnyInVirtualKeySection = SevError | 0x01B;
|
|
200
|
+
static Error_AnyInVirtualKeySection = () => m(this.ERROR_AnyInVirtualKeySection, `'any' command is illegal in virtual key section`);
|
|
118
201
|
static ERROR_InvalidAny = SevError | 0x01C;
|
|
202
|
+
static Error_InvalidAny = () => m(this.ERROR_InvalidAny, `Invalid 'any' command`);
|
|
119
203
|
static ERROR_StoreDoesNotExist = SevError | 0x01D;
|
|
204
|
+
static Error_StoreDoesNotExist = () => m(this.ERROR_StoreDoesNotExist, `Store referenced does not exist`);
|
|
120
205
|
static ERROR_BeepInVirtualKeySection = SevError | 0x01E;
|
|
206
|
+
static Error_BeepInVirtualKeySection = () => m(this.ERROR_BeepInVirtualKeySection, `'beep' command is illegal in virtual key section`);
|
|
121
207
|
static ERROR_IndexInVirtualKeySection = SevError | 0x01F;
|
|
208
|
+
static Error_IndexInVirtualKeySection = () => m(this.ERROR_IndexInVirtualKeySection, `'index' command is illegal in virtual key section`);
|
|
122
209
|
static ERROR_InvalidIndex = SevError | 0x020;
|
|
210
|
+
static Error_InvalidIndex = () => m(this.ERROR_InvalidIndex, `Invalid 'index' command`);
|
|
123
211
|
static ERROR_OutsInVirtualKeySection = SevError | 0x021;
|
|
212
|
+
static Error_OutsInVirtualKeySection = () => m(this.ERROR_OutsInVirtualKeySection, `'outs' command is illegal in virtual key section`);
|
|
124
213
|
static ERROR_InvalidOuts = SevError | 0x022;
|
|
214
|
+
static Error_InvalidOuts = () => m(this.ERROR_InvalidOuts, `Invalid 'outs' command`);
|
|
125
215
|
static ERROR_ContextInVirtualKeySection = SevError | 0x024;
|
|
216
|
+
static Error_ContextInVirtualKeySection = () => m(this.ERROR_ContextInVirtualKeySection, `'context' command is illegal in virtual key section`);
|
|
126
217
|
static ERROR_InvalidUse = SevError | 0x025;
|
|
218
|
+
static Error_InvalidUse = () => m(this.ERROR_InvalidUse, `Invalid 'use' command`);
|
|
127
219
|
static ERROR_GroupDoesNotExist = SevError | 0x026;
|
|
220
|
+
static Error_GroupDoesNotExist = () => m(this.ERROR_GroupDoesNotExist, `Group does not exist`);
|
|
128
221
|
static ERROR_VirtualKeyNotAllowedHere = SevError | 0x027;
|
|
222
|
+
static Error_VirtualKeyNotAllowedHere = () => m(this.ERROR_VirtualKeyNotAllowedHere, `Virtual key is not allowed here`);
|
|
129
223
|
static ERROR_InvalidSwitch = SevError | 0x028;
|
|
224
|
+
static Error_InvalidSwitch = () => m(this.ERROR_InvalidSwitch, `Invalid 'switch' command`);
|
|
130
225
|
static ERROR_NoTokensFound = SevError | 0x029;
|
|
226
|
+
static Error_NoTokensFound = () => m(this.ERROR_NoTokensFound, `No tokens found in line`);
|
|
131
227
|
static ERROR_InvalidLineContinuation = SevError | 0x02A;
|
|
228
|
+
static Error_InvalidLineContinuation = () => m(this.ERROR_InvalidLineContinuation, `Invalid line continuation`);
|
|
132
229
|
static ERROR_LineTooLong = SevError | 0x02B;
|
|
230
|
+
static Error_LineTooLong = () => m(this.ERROR_LineTooLong, `Line too long`);
|
|
133
231
|
static ERROR_InvalidCopyright = SevError | 0x02C;
|
|
232
|
+
static Error_InvalidCopyright = () => m(this.ERROR_InvalidCopyright, `Invalid 'copyright' command`);
|
|
134
233
|
static ERROR_CodeInvalidInThisSection = SevError | 0x02D;
|
|
234
|
+
static Error_CodeInvalidInThisSection = () => m(this.ERROR_CodeInvalidInThisSection, `This line is invalid in this section of the file`);
|
|
135
235
|
static ERROR_InvalidMessage = SevError | 0x02E;
|
|
236
|
+
static Error_InvalidMessage = () => m(this.ERROR_InvalidMessage, `Invalid 'message' command`);
|
|
136
237
|
static ERROR_InvalidLanguageName = SevError | 0x02F;
|
|
238
|
+
static Error_InvalidLanguageName = () => m(this.ERROR_InvalidLanguageName, `Invalid 'languagename' command`);
|
|
137
239
|
static ERROR_InvalidBitmapLine = SevError | 0x030;
|
|
240
|
+
static Error_InvalidBitmapLine = () => m(this.ERROR_InvalidBitmapLine, `Invalid 'bitmaps' command`);
|
|
138
241
|
static ERROR_CannotReadBitmapFile = SevError | 0x031;
|
|
242
|
+
static Error_CannotReadBitmapFile = () => m(this.ERROR_CannotReadBitmapFile, `Cannot open the bitmap or icon file for reading`);
|
|
139
243
|
static ERROR_IndexDoesNotPointToAny = SevError | 0x032;
|
|
244
|
+
static Error_IndexDoesNotPointToAny = () => m(this.ERROR_IndexDoesNotPointToAny, `An index() in the output does not have a corresponding any() statement`);
|
|
140
245
|
static ERROR_ReservedCharacter = SevError | 0x033;
|
|
246
|
+
static Error_ReservedCharacter = () => m(this.ERROR_ReservedCharacter, `A reserved character was found`);
|
|
141
247
|
static ERROR_InvalidCharacter = SevError | 0x034;
|
|
248
|
+
static Error_InvalidCharacter = () => m(this.ERROR_InvalidCharacter, `A character was found that is outside the valid Unicode range (U+0000 - U+10FFFF)`);
|
|
142
249
|
static ERROR_InvalidCall = SevError | 0x035;
|
|
250
|
+
static Error_InvalidCall = () => m(this.ERROR_InvalidCall, `The 'call' command is invalid`);
|
|
143
251
|
static ERROR_CallInVirtualKeySection = SevError | 0x036;
|
|
252
|
+
static Error_CallInVirtualKeySection = () => m(this.ERROR_CallInVirtualKeySection, `'call' command is illegal in virtual key section`);
|
|
144
253
|
static ERROR_CodeInvalidInKeyStore = SevError | 0x037;
|
|
254
|
+
static Error_CodeInvalidInKeyStore = () => m(this.ERROR_CodeInvalidInKeyStore, `The command is invalid inside a store that is used in a key part of the rule`);
|
|
145
255
|
static ERROR_CannotLoadIncludeFile = SevError | 0x038;
|
|
256
|
+
static Error_CannotLoadIncludeFile = () => m(this.ERROR_CannotLoadIncludeFile, `Cannot load the included file: it is either invalid or does not exist`);
|
|
146
257
|
static ERROR_60FeatureOnly_EthnologueCode = SevError | 0x039;
|
|
258
|
+
static Error_60FeatureOnly_EthnologueCode = () => m(this.ERROR_60FeatureOnly_EthnologueCode, `EthnologueCode system store requires VERSION 6.0 or higher`);
|
|
147
259
|
static ERROR_60FeatureOnly_MnemonicLayout = SevError | 0x03A;
|
|
260
|
+
static Error_60FeatureOnly_MnemonicLayout = () => m(this.ERROR_60FeatureOnly_MnemonicLayout, `MnemonicLayout functionality requires VERSION 6.0 or higher`);
|
|
148
261
|
static ERROR_60FeatureOnly_OldCharPosMatching = SevError | 0x03B;
|
|
262
|
+
static Error_60FeatureOnly_OldCharPosMatching = () => m(this.ERROR_60FeatureOnly_OldCharPosMatching, `OldCharPosMatching system store requires VERSION 6.0 or higher`);
|
|
149
263
|
static ERROR_60FeatureOnly_NamedCodes = SevError | 0x03C;
|
|
264
|
+
static Error_60FeatureOnly_NamedCodes = () => m(this.ERROR_60FeatureOnly_NamedCodes, `Named character constants requires VERSION 6.0 or higher`);
|
|
150
265
|
static ERROR_60FeatureOnly_Contextn = SevError | 0x03D;
|
|
266
|
+
static Error_60FeatureOnly_Contextn = () => m(this.ERROR_60FeatureOnly_Contextn, `Context(n) requires VERSION 6.0 or higher`);
|
|
151
267
|
static ERROR_501FeatureOnly_Call = SevError | 0x03E;
|
|
268
|
+
static Error_501FeatureOnly_Call = () => m(this.ERROR_501FeatureOnly_Call, `Call() requires VERSION 5.01 or higher`);
|
|
152
269
|
static ERROR_InvalidNamedCode = SevError | 0x03F;
|
|
270
|
+
static Error_InvalidNamedCode = () => m(this.ERROR_InvalidNamedCode, `Invalid named code constant`);
|
|
153
271
|
static ERROR_InvalidSystemStore = SevError | 0x040;
|
|
272
|
+
static Error_InvalidSystemStore = () => m(this.ERROR_InvalidSystemStore, `Invalid system store name found`);
|
|
154
273
|
static ERROR_60FeatureOnly_VirtualCharKey = SevError | 0x044;
|
|
274
|
+
static Error_60FeatureOnly_VirtualCharKey = () => m(this.ERROR_60FeatureOnly_VirtualCharKey, `Virtual character keys require VERSION 6.0 or higher`);
|
|
155
275
|
static ERROR_VersionAlreadyIncluded = SevError | 0x045;
|
|
276
|
+
static Error_VersionAlreadyIncluded = () => m(this.ERROR_VersionAlreadyIncluded, `Only one VERSION or store(version) line allowed in a source file.`);
|
|
156
277
|
static ERROR_70FeatureOnly = SevError | 0x046;
|
|
278
|
+
static Error_70FeatureOnly = () => m(this.ERROR_70FeatureOnly, `This feature requires store(version) '7.0' or higher`);
|
|
157
279
|
static ERROR_80FeatureOnly = SevError | 0x047;
|
|
280
|
+
static Error_80FeatureOnly = () => m(this.ERROR_80FeatureOnly, `This feature requires store(version) '8.0' or higher`);
|
|
158
281
|
static ERROR_InvalidInVirtualKeySection = SevError | 0x048;
|
|
282
|
+
static Error_InvalidInVirtualKeySection = () => m(this.ERROR_InvalidInVirtualKeySection, `This statement is not valid in a virtual key section`);
|
|
159
283
|
static ERROR_InvalidIf = SevError | 0x049;
|
|
284
|
+
static Error_InvalidIf = () => m(this.ERROR_InvalidIf, `The if() statement is not valid`);
|
|
160
285
|
static ERROR_InvalidReset = SevError | 0x04A;
|
|
286
|
+
static Error_InvalidReset = () => m(this.ERROR_InvalidReset, `The reset() statement is not valid`);
|
|
161
287
|
static ERROR_InvalidSet = SevError | 0x04B;
|
|
288
|
+
static Error_InvalidSet = () => m(this.ERROR_InvalidSet, `The set() statement is not valid`);
|
|
162
289
|
static ERROR_InvalidSave = SevError | 0x04C;
|
|
290
|
+
static Error_InvalidSave = () => m(this.ERROR_InvalidSave, `The save() statement is not valid`);
|
|
163
291
|
static ERROR_InvalidEthnologueCode = SevError | 0x04D;
|
|
292
|
+
static Error_InvalidEthnologueCode = () => m(this.ERROR_InvalidEthnologueCode, `Invalid ethnologuecode format`);
|
|
164
293
|
static FATAL_CannotCreateTempfile = SevFatal | 0x04E;
|
|
294
|
+
static Fatal_CannotCreateTempfile = () => m(this.FATAL_CannotCreateTempfile, `Cannot create temp file`);
|
|
165
295
|
static ERROR_90FeatureOnly_IfSystemStores = SevError | 0x04F;
|
|
296
|
+
static Error_90FeatureOnly_IfSystemStores = () => m(this.ERROR_90FeatureOnly_IfSystemStores, `if(store) requires store(version) '9.0' or higher`);
|
|
166
297
|
static ERROR_IfSystemStore_NotFound = SevError | 0x050;
|
|
298
|
+
static Error_IfSystemStore_NotFound = () => m(this.ERROR_IfSystemStore_NotFound, `System store in if() not found`);
|
|
167
299
|
static ERROR_90FeatureOnly_SetSystemStores = SevError | 0x051;
|
|
300
|
+
static Error_90FeatureOnly_SetSystemStores = () => m(this.ERROR_90FeatureOnly_SetSystemStores, `set(store) requires store(version) '9.0' or higher`);
|
|
168
301
|
static ERROR_SetSystemStore_NotFound = SevError | 0x052;
|
|
302
|
+
static Error_SetSystemStore_NotFound = () => m(this.ERROR_SetSystemStore_NotFound, `System store in set() not found`);
|
|
169
303
|
static ERROR_90FeatureOnlyVirtualKeyDictionary = SevError | 0x053;
|
|
304
|
+
static Error_90FeatureOnlyVirtualKeyDictionary = () => m(this.ERROR_90FeatureOnlyVirtualKeyDictionary, `Custom virtual key names require store(version) '9.0'`);
|
|
170
305
|
static ERROR_NotSupportedInKeymanWebContext = SevError | 0x054;
|
|
306
|
+
static Error_NotSupportedInKeymanWebContext = (o) => mw(this.ERROR_NotSupportedInKeymanWebContext, `Statement '${def(o.code)}' is not currently supported in context for web and touch targets`, o);
|
|
171
307
|
static ERROR_NotSupportedInKeymanWebOutput = SevError | 0x055;
|
|
308
|
+
static Error_NotSupportedInKeymanWebOutput = (o) => mw(this.ERROR_NotSupportedInKeymanWebOutput, `Statement '${def(o.code)}' is not currently supported in output for web and touch targets`, o);
|
|
172
309
|
static ERROR_NotSupportedInKeymanWebStore = SevError | 0x056;
|
|
310
|
+
static Error_NotSupportedInKeymanWebStore = (o) => mw(this.ERROR_NotSupportedInKeymanWebStore, `'${def(o.code)}' is not currently supported in store '${def(o.store)}' when used by any or index for web and touch targets`);
|
|
173
311
|
static ERROR_VirtualCharacterKeysNotSupportedInKeymanWeb = SevError | 0x057;
|
|
312
|
+
static Error_VirtualCharacterKeysNotSupportedInKeymanWeb = (o) => mw(this.ERROR_VirtualCharacterKeysNotSupportedInKeymanWeb, `Virtual character keys not currently supported in KeymanWeb`, o);
|
|
174
313
|
static ERROR_VirtualKeysNotValidForMnemonicLayouts = SevError | 0x058;
|
|
314
|
+
static Error_VirtualKeysNotValidForMnemonicLayouts = (o) => mw(this.ERROR_VirtualKeysNotValidForMnemonicLayouts, `Virtual keys are not valid for mnemonic layouts`, o);
|
|
175
315
|
static ERROR_InvalidTouchLayoutFile = SevError | 0x059;
|
|
316
|
+
static Error_InvalidTouchLayoutFile = (o) => mw(this.ERROR_InvalidTouchLayoutFile, `Touch layout file ${def(o.filename)} is not valid`);
|
|
176
317
|
static ERROR_TouchLayoutInvalidIdentifier = SevError | 0x05A;
|
|
318
|
+
static Error_TouchLayoutInvalidIdentifier = (o) => mw(this.ERROR_TouchLayoutInvalidIdentifier, `Key "${def(o.keyId)}" on "${def(o.platformName)}", layer "${def(o.layerId)}" has an invalid identifier.`);
|
|
177
319
|
static ERROR_InvalidKeyCode = SevError | 0x05B;
|
|
320
|
+
static Error_InvalidKeyCode = (o) => mw(this.ERROR_InvalidKeyCode, `Invalid key identifier "${def(o.keyId)}"`);
|
|
178
321
|
static ERROR_90FeatureOnlyLayoutFile = SevError | 0x05C;
|
|
322
|
+
static Error_90FeatureOnlyLayoutFile = () => m(this.ERROR_90FeatureOnlyLayoutFile, `Touch layout file reference requires store(version) '9.0'or higher`);
|
|
179
323
|
static ERROR_90FeatureOnlyKeyboardVersion = SevError | 0x05D;
|
|
324
|
+
static Error_90FeatureOnlyKeyboardVersion = () => m(this.ERROR_90FeatureOnlyKeyboardVersion, `KeyboardVersion system store requires store(version) '9.0'or higher`);
|
|
180
325
|
static ERROR_KeyboardVersionFormatInvalid = SevError | 0x05E;
|
|
326
|
+
static Error_KeyboardVersionFormatInvalid = () => m(this.ERROR_KeyboardVersionFormatInvalid, `KeyboardVersion format is invalid, expecting dot-separated integers`);
|
|
181
327
|
static ERROR_ContextExHasInvalidOffset = SevError | 0x05F;
|
|
328
|
+
static Error_ContextExHasInvalidOffset = () => m(this.ERROR_ContextExHasInvalidOffset, `context() statement has offset out of range`);
|
|
182
329
|
static ERROR_90FeatureOnlyEmbedCSS = SevError | 0x060;
|
|
330
|
+
static Error_90FeatureOnlyEmbedCSS = () => m(this.ERROR_90FeatureOnlyEmbedCSS, `Embedding CSS requires store(version) '9.0'or higher`);
|
|
183
331
|
static ERROR_90FeatureOnlyTargets = SevError | 0x061;
|
|
332
|
+
static Error_90FeatureOnlyTargets = () => m(this.ERROR_90FeatureOnlyTargets, `TARGETS system store requires store(version) '9.0'or higher`);
|
|
184
333
|
static ERROR_ContextAndIndexInvalidInMatchNomatch = SevError | 0x062;
|
|
334
|
+
static Error_ContextAndIndexInvalidInMatchNomatch = () => m(this.ERROR_ContextAndIndexInvalidInMatchNomatch, `context and index statements cannot be used in a match or nomatch statement`);
|
|
185
335
|
static ERROR_140FeatureOnlyContextAndNotAnyWeb = SevError | 0x063;
|
|
336
|
+
static Error_140FeatureOnlyContextAndNotAnyWeb = () => m(this.ERROR_140FeatureOnlyContextAndNotAnyWeb, `For web and touch platforms, context() statement referring to notany() requires store(version) '14.0'or higher`);
|
|
186
337
|
static ERROR_ExpansionMustFollowCharacterOrVKey = SevError | 0x064;
|
|
338
|
+
static Error_ExpansionMustFollowCharacterOrVKey = () => m(this.ERROR_ExpansionMustFollowCharacterOrVKey, `An expansion must follow a character or a virtual key`);
|
|
187
339
|
static ERROR_VKeyExpansionMustBeFollowedByVKey = SevError | 0x065;
|
|
340
|
+
static Error_VKeyExpansionMustBeFollowedByVKey = () => m(this.ERROR_VKeyExpansionMustBeFollowedByVKey, `A virtual key expansion must be terminated by a virtual key`);
|
|
188
341
|
static ERROR_CharacterExpansionMustBeFollowedByCharacter = SevError | 0x066;
|
|
342
|
+
static Error_CharacterExpansionMustBeFollowedByCharacter = () => m(this.ERROR_CharacterExpansionMustBeFollowedByCharacter, `A character expansion must be terminated by a character key`);
|
|
189
343
|
static ERROR_VKeyExpansionMustUseConsistentShift = SevError | 0x067;
|
|
344
|
+
static Error_VKeyExpansionMustUseConsistentShift = () => m(this.ERROR_VKeyExpansionMustUseConsistentShift, `A virtual key expansion must use the same shift state for both terminators`);
|
|
190
345
|
static ERROR_ExpansionMustBePositive = SevError | 0x068;
|
|
346
|
+
static Error_ExpansionMustBePositive = () => m(this.ERROR_ExpansionMustBePositive, `An expansion must have positive difference (i.e. A-Z, not Z-A)`);
|
|
191
347
|
static ERROR_CasedKeysMustContainOnlyVirtualKeys = SevError | 0x069;
|
|
348
|
+
static Error_CasedKeysMustContainOnlyVirtualKeys = () => m(this.ERROR_CasedKeysMustContainOnlyVirtualKeys, `The &CasedKeys system store must contain only virtual keys or characters found on a US English keyboard`);
|
|
192
349
|
static ERROR_CasedKeysMustNotIncludeShiftStates = SevError | 0x06A;
|
|
350
|
+
static Error_CasedKeysMustNotIncludeShiftStates = () => m(this.ERROR_CasedKeysMustNotIncludeShiftStates, `The &CasedKeys system store must not include shift states`);
|
|
193
351
|
static ERROR_CasedKeysNotSupportedWithMnemonicLayout = SevError | 0x06B;
|
|
352
|
+
static Error_CasedKeysNotSupportedWithMnemonicLayout = () => m(this.ERROR_CasedKeysNotSupportedWithMnemonicLayout, `The &CasedKeys system store is not supported with mnemonic layouts`);
|
|
194
353
|
static ERROR_CannotUseReadWriteGroupFromReadonlyGroup = SevError | 0x06C;
|
|
354
|
+
static Error_CannotUseReadWriteGroupFromReadonlyGroup = () => m(this.ERROR_CannotUseReadWriteGroupFromReadonlyGroup, `Group used from a readonly group must also be readonly`);
|
|
195
355
|
static ERROR_StatementNotPermittedInReadonlyGroup = SevError | 0x06D;
|
|
356
|
+
static Error_StatementNotPermittedInReadonlyGroup = () => m(this.ERROR_StatementNotPermittedInReadonlyGroup, `Statement is not permitted in output of readonly group`);
|
|
196
357
|
static ERROR_OutputInReadonlyGroup = SevError | 0x06E;
|
|
358
|
+
static Error_OutputInReadonlyGroup = () => m(this.ERROR_OutputInReadonlyGroup, `Output is not permitted in a readonly group`);
|
|
197
359
|
static ERROR_NewContextGroupMustBeReadonly = SevError | 0x06F;
|
|
360
|
+
static Error_NewContextGroupMustBeReadonly = () => m(this.ERROR_NewContextGroupMustBeReadonly, `Group used in begin newContext must be readonly`);
|
|
198
361
|
static ERROR_PostKeystrokeGroupMustBeReadonly = SevError | 0x070;
|
|
362
|
+
static Error_PostKeystrokeGroupMustBeReadonly = () => m(this.ERROR_PostKeystrokeGroupMustBeReadonly, `Group used in begin postKeystroke must be readonly`);
|
|
199
363
|
static ERROR_DuplicateGroup = SevError | 0x071;
|
|
364
|
+
static Error_DuplicateGroup = () => m(this.ERROR_DuplicateGroup, `A group with this name has already been defined.`);
|
|
200
365
|
static ERROR_DuplicateStore = SevError | 0x072;
|
|
366
|
+
static Error_DuplicateStore = () => m(this.ERROR_DuplicateStore, `A store with this name has already been defined.`);
|
|
201
367
|
static ERROR_RepeatedBegin = SevError | 0x073;
|
|
368
|
+
static Error_RepeatedBegin = () => m(this.ERROR_RepeatedBegin, `Begin has already been set`);
|
|
202
369
|
static ERROR_VirtualKeyInContext = SevError | 0x074;
|
|
370
|
+
static Error_VirtualKeyInContext = () => m(this.ERROR_VirtualKeyInContext, `Virtual keys are not permitted in context`);
|
|
203
371
|
static WARN_TooManyWarnings = SevWarn | 0x080;
|
|
372
|
+
static Warn_TooManyWarnings = () => m(this.WARN_TooManyWarnings, `Too many warnings or errors`);
|
|
204
373
|
static WARN_OldVersion = SevWarn | 0x081;
|
|
374
|
+
static Warn_OldVersion = () => m(this.WARN_OldVersion, `The keyboard file is an old version`);
|
|
205
375
|
static WARN_BitmapNotUsed = SevWarn | 0x082;
|
|
376
|
+
static Warn_BitmapNotUsed = () => m(this.WARN_BitmapNotUsed, `The 'bitmaps' statement is obsolete and only the first bitmap referred to will be used, you should use 'bitmap'.`);
|
|
206
377
|
static WARN_CustomLanguagesNotSupported = SevWarn | 0x083;
|
|
378
|
+
static Warn_CustomLanguagesNotSupported = () => m(this.WARN_CustomLanguagesNotSupported, `Languages over 0x1FF, 0x1F are not supported correctly by Windows. You should use no LANGUAGE line instead.`);
|
|
207
379
|
static WARN_KeyBadLength = SevWarn | 0x084;
|
|
380
|
+
static Warn_KeyBadLength = () => m(this.WARN_KeyBadLength, `There are too many characters in the keystroke part of the rule.`);
|
|
208
381
|
static WARN_IndexStoreShort = SevWarn | 0x085;
|
|
382
|
+
static Warn_IndexStoreShort = () => m(this.WARN_IndexStoreShort, `The store referenced in index() is shorter than the store referenced in any()`);
|
|
209
383
|
static WARN_UnicodeInANSIGroup = SevWarn | 0x086;
|
|
384
|
+
static Warn_UnicodeInANSIGroup = () => m(this.WARN_UnicodeInANSIGroup, `A Unicode character was found in an ANSI group`);
|
|
210
385
|
static WARN_ANSIInUnicodeGroup = SevWarn | 0x087;
|
|
386
|
+
static Warn_ANSIInUnicodeGroup = () => m(this.WARN_ANSIInUnicodeGroup, `An ANSI character was found in a Unicode group`);
|
|
211
387
|
static WARN_UnicodeSurrogateUsed = SevWarn | 0x088;
|
|
388
|
+
static Warn_UnicodeSurrogateUsed = () => m(this.WARN_UnicodeSurrogateUsed, `A Unicode surrogate character was found. You should use Unicode scalar values to represent values > U+FFFF`);
|
|
212
389
|
static WARN_ReservedCharacter = SevWarn | 0x089;
|
|
390
|
+
static Warn_ReservedCharacter = () => m(this.WARN_ReservedCharacter, `A Unicode character was found that should not be used`);
|
|
213
391
|
// Note: INFO_Info is called CWARN_Info in kmn_compiler_errors.h, but should have an "info" severity
|
|
214
392
|
static INFO_Info = SevInfo | 0x08A;
|
|
393
|
+
static Info_Info = () => m(this.INFO_Info, `Information`);
|
|
215
394
|
static WARN_VirtualKeyWithMnemonicLayout = SevWarn | 0x08B;
|
|
395
|
+
static Warn_VirtualKeyWithMnemonicLayout = () => m(this.WARN_VirtualKeyWithMnemonicLayout, `Virtual key used instead of virtual character key with a mnemonic layout`);
|
|
216
396
|
static WARN_VirtualCharKeyWithPositionalLayout = SevWarn | 0x08C;
|
|
397
|
+
static Warn_VirtualCharKeyWithPositionalLayout = () => m(this.WARN_VirtualCharKeyWithPositionalLayout, `Virtual character key used with a positional layout instead of mnemonic layout`);
|
|
217
398
|
static WARN_StoreAlreadyUsedAsOptionOrCall = SevWarn | 0x08D;
|
|
399
|
+
static Warn_StoreAlreadyUsedAsOptionOrCall = () => m(this.WARN_StoreAlreadyUsedAsOptionOrCall, `Store already used as an option or in a call statement and should not be used as a normal store`);
|
|
218
400
|
static WARN_StoreAlreadyUsedAsStoreOrCall = SevWarn | 0x08E;
|
|
401
|
+
static Warn_StoreAlreadyUsedAsStoreOrCall = () => m(this.WARN_StoreAlreadyUsedAsStoreOrCall, `Store already used as a normal store or in a call statement and should not be used as an option`);
|
|
219
402
|
static WARN_StoreAlreadyUsedAsStoreOrOption = SevWarn | 0x08F;
|
|
403
|
+
static Warn_StoreAlreadyUsedAsStoreOrOption = () => m(this.WARN_StoreAlreadyUsedAsStoreOrOption, `Store already used as a normal store or as an option and should not be used in a call statement`);
|
|
220
404
|
static WARN_PunctuationInEthnologueCode = SevWarn | 0x090;
|
|
405
|
+
static Warn_PunctuationInEthnologueCode = () => m(this.WARN_PunctuationInEthnologueCode, `Punctuation should not be used to separate Ethnologue codes; instead use spaces`);
|
|
221
406
|
static WARN_TouchLayoutMissingLayer = SevWarn | 0x091;
|
|
407
|
+
static Warn_TouchLayoutMissingLayer = (o) => mw(this.WARN_TouchLayoutMissingLayer, `Key "${def(o.keyId)}" on platform "${def(o.platformName)}", layer "${def(o.layerId)}", references a missing layer "${def(o.nextLayer)}"`);
|
|
222
408
|
static WARN_TouchLayoutCustomKeyNotDefined = SevWarn | 0x092;
|
|
409
|
+
static Warn_TouchLayoutCustomKeyNotDefined = (o) => mw(this.WARN_TouchLayoutCustomKeyNotDefined, `Key "${def(o.keyId)}" on platform "${def(o.platformName)}", layer "${def(o.layerId)}", is a custom key but has no corresponding rule in the source.`);
|
|
223
410
|
static WARN_TouchLayoutMissingRequiredKeys = SevWarn | 0x093;
|
|
411
|
+
static Warn_TouchLayoutMissingRequiredKeys = (o) => mw(this.WARN_TouchLayoutMissingRequiredKeys, `Layer "${def(o.layerId)}" on platform "${def(o.platformName)}" is missing the required key(s) '${def(o.missingKeys)}'.`);
|
|
224
412
|
static WARN_HelpFileMissing = SevWarn | 0x094;
|
|
413
|
+
static Warn_HelpFileMissing = (o) => mw(this.WARN_HelpFileMissing, `File ${def(o.helpFilename)} could not be loaded: ${(o.e ?? '').toString()}`, o);
|
|
225
414
|
static WARN_EmbedJsFileMissing = SevWarn | 0x095;
|
|
226
|
-
static
|
|
227
|
-
static
|
|
415
|
+
static Warn_EmbedJsFileMissing = (o) => mw(this.WARN_EmbedJsFileMissing, `File ${def(o.jsFilename)} could not be loaded: ${(o.e ?? '').toString()}`, o);
|
|
416
|
+
// static WARN_TouchLayoutFileMissing = SevWarn | 0x096;
|
|
417
|
+
// static WARN_VisualKeyboardFileMissing = SevWarn | 0x097;
|
|
228
418
|
static WARN_ExtendedShiftFlagsNotSupportedInKeymanWeb = SevWarn | 0x098;
|
|
419
|
+
static Warn_ExtendedShiftFlagsNotSupportedInKeymanWeb = (o) => mw(this.WARN_ExtendedShiftFlagsNotSupportedInKeymanWeb, `Extended shift flags ${def(o.flags)} are not supported in KeymanWeb`, o);
|
|
229
420
|
static WARN_TouchLayoutUnidentifiedKey = SevWarn | 0x099;
|
|
421
|
+
static Warn_TouchLayoutUnidentifiedKey = (o) => mw(this.WARN_TouchLayoutUnidentifiedKey, `A key on layer "${def(o.layerId)}" has no identifier.`);
|
|
230
422
|
static HINT_UnreachableKeyCode = SevHint | 0x09A;
|
|
231
|
-
static
|
|
423
|
+
static Hint_UnreachableKeyCode = (o) => mw(this.HINT_UnreachableKeyCode, `The rule will never be matched for key ${def(o.key)} because its key code is never fired.`, o);
|
|
424
|
+
// static WARN_CouldNotCopyJsonFile = SevWarn | 0x09B;
|
|
232
425
|
static WARN_PlatformNotInTargets = SevWarn | 0x09C;
|
|
426
|
+
static Warn_PlatformNotInTargets = () => m(this.WARN_PlatformNotInTargets, `The specified platform is not a target platform`);
|
|
233
427
|
static WARN_HeaderStatementIsDeprecated = SevWarn | 0x09D;
|
|
428
|
+
static Warn_HeaderStatementIsDeprecated = () => m(this.WARN_HeaderStatementIsDeprecated, `Header statements are deprecated; use instead the equivalent system store`);
|
|
234
429
|
static WARN_UseNotLastStatementInRule = SevWarn | 0x09E;
|
|
430
|
+
static Warn_UseNotLastStatementInRule = () => m(this.WARN_UseNotLastStatementInRule, `A rule with use() statements in the output should not have other content following the use() statements`);
|
|
235
431
|
static WARN_TouchLayoutFontShouldBeSameForAllPlatforms = SevWarn | 0x09F;
|
|
236
|
-
static
|
|
237
|
-
static
|
|
432
|
+
static Warn_TouchLayoutFontShouldBeSameForAllPlatforms = () => mw(this.WARN_TouchLayoutFontShouldBeSameForAllPlatforms, `The touch layout font should be the same for all platforms.`);
|
|
433
|
+
// static WARN_InvalidJSONMetadataFile = SevWarn | 0x0A0;
|
|
434
|
+
// static WARN_JSONMetadataOSKFontShouldMatchTouchFont = SevWarn | 0x0A1;
|
|
238
435
|
static WARN_KVKFileIsInSourceFormat = SevWarn | 0x0A2;
|
|
436
|
+
static Warn_KVKFileIsInSourceFormat = () => m(this.WARN_KVKFileIsInSourceFormat, `.kvk file should be binary but is an XML file`);
|
|
437
|
+
// kmcmplib: static Warn_DontMixChiralAndNonChiralModifiers = () => m(this.WARN_DontMixChiralAndNonChiralModifiers, `Don't mix the use of left/right modifiers with non-left/right modifiers in the same platform`);
|
|
239
438
|
static WARN_DontMixChiralAndNonChiralModifiers = SevWarn | 0x0A3;
|
|
439
|
+
static Warn_DontMixChiralAndNonChiralModifiers = () => mw(this.WARN_DontMixChiralAndNonChiralModifiers, `This keyboard contains Ctrl,Alt and LCtrl,LAlt,RCtrl,RAlt sets of modifiers. Use only one or the other set for web target.`);
|
|
240
440
|
static WARN_MixingLeftAndRightModifiers = SevWarn | 0x0A4;
|
|
441
|
+
static Warn_MixingLeftAndRightModifiers = () => m(this.WARN_MixingLeftAndRightModifiers, `Left and right modifiers should not both be used in the same rule`);
|
|
241
442
|
static WARN_LanguageHeadersDeprecatedInKeyman10 = SevWarn | 0x0A5;
|
|
443
|
+
static Warn_LanguageHeadersDeprecatedInKeyman10 = () => m(this.WARN_LanguageHeadersDeprecatedInKeyman10, `This language header has been deprecated in Keyman 10. Instead, add language metadata in the package file`);
|
|
242
444
|
static HINT_NonUnicodeFile = SevHint | 0x0A6;
|
|
243
|
-
static
|
|
445
|
+
static Hint_NonUnicodeFile = () => m(this.HINT_NonUnicodeFile, `Keyman Developer has detected that the file has ANSI encoding. Consider converting this file to UTF-8`);
|
|
446
|
+
// static WARN_TooManyErrorsOrWarnings = SevWarn | 0x0A7;
|
|
244
447
|
static WARN_HotkeyHasInvalidModifier = SevWarn | 0x0A8;
|
|
448
|
+
static Warn_HotkeyHasInvalidModifier = () => m(this.WARN_HotkeyHasInvalidModifier, `Hotkey has modifiers that are not supported. Use only SHIFT, CTRL and ALT`);
|
|
245
449
|
static WARN_TouchLayoutSpecialLabelOnNormalKey = SevWarn | 0x0A9;
|
|
450
|
+
static Warn_TouchLayoutSpecialLabelOnNormalKey = (o) => mw(this.WARN_TouchLayoutSpecialLabelOnNormalKey, `Key "${def(o.keyId)}" on platform "${def(o.platformName)}", layer "${def(o.layerId)}" does not have ` +
|
|
451
|
+
`the key type "Special" or "Special (active)" but has the label "${def(o.label)}". This feature is only supported in Keyman 14 or later`);
|
|
246
452
|
static WARN_OptionStoreNameInvalid = SevWarn | 0x0AA;
|
|
453
|
+
static Warn_OptionStoreNameInvalid = (o) => mw(this.WARN_OptionStoreNameInvalid, `The option store ${def(o.name)} should be named with characters in the range A-Z, a-z, 0-9 and _ only.`);
|
|
247
454
|
static WARN_NulNotFirstStatementInContext = SevWarn | 0x0AB;
|
|
455
|
+
static Warn_NulNotFirstStatementInContext = () => m(this.WARN_NulNotFirstStatementInContext, `nul must be the first statement in the context`);
|
|
248
456
|
static WARN_IfShouldBeAtStartOfContext = SevWarn | 0x0AC;
|
|
457
|
+
static Warn_IfShouldBeAtStartOfContext = () => m(this.WARN_IfShouldBeAtStartOfContext, `if, platform and baselayout should be at start of context (after nul, if present)`);
|
|
249
458
|
static WARN_KeyShouldIncludeNCaps = SevWarn | 0x0AD;
|
|
459
|
+
static Warn_KeyShouldIncludeNCaps = () => m(this.WARN_KeyShouldIncludeNCaps, `Other rules which reference this key include CAPS or NCAPS modifiers, so this rule must include NCAPS modifier to avoid inconsistent matches`);
|
|
250
460
|
static HINT_UnreachableRule = SevHint | 0x0AE;
|
|
461
|
+
static Hint_UnreachableRule = () => m(this.HINT_UnreachableRule, `This rule will never be matched as another rule takes precedence`);
|
|
251
462
|
static WARN_VirtualKeyInOutput = SevWarn | 0x0AF;
|
|
463
|
+
static Warn_VirtualKeyInOutput = () => m(this.WARN_VirtualKeyInOutput, `Virtual keys are not supported in output`);
|
|
252
464
|
static FATAL_BufferOverflow = SevFatal | 0x0C0;
|
|
465
|
+
static Fatal_BufferOverflow = () => m(this.FATAL_BufferOverflow, `The compiler memory buffer overflowed`);
|
|
253
466
|
static FATAL_Break = SevFatal | 0x0C1;
|
|
467
|
+
static Fatal_Break = () => m(this.FATAL_Break, `Compiler interrupted by user`);
|
|
254
468
|
}
|
|
255
469
|
;
|
|
470
|
+
/**
|
|
471
|
+
* @internal
|
|
472
|
+
* TODO: This class is here as a stopgap as we merged it with
|
|
473
|
+
* KmnCompilerMessages. It should be removed in v18.0.
|
|
474
|
+
*/
|
|
475
|
+
export class CompilerMessages extends KmnCompilerMessages {
|
|
476
|
+
}
|
|
256
477
|
export function mapErrorFromKmcmplib(line, code, msg) {
|
|
257
478
|
const severity = LogLevelToSeverity[code & 61440 /* LogLevel.LEVEL_MASK */];
|
|
258
479
|
const baseCode = code & 4095 /* LogLevel.CODE_MASK */;
|
|
@@ -264,5 +485,5 @@ export function mapErrorFromKmcmplib(line, code, msg) {
|
|
|
264
485
|
return event;
|
|
265
486
|
}
|
|
266
487
|
;
|
|
267
|
-
//# debugId=
|
|
488
|
+
//# debugId=2b15f3d0-b8ea-58cf-8104-3e8dc6026f90
|
|
268
489
|
//# sourceMappingURL=kmn-compiler-messages.js.map
|