@kolanut/language-packs 0.1.0 → 0.1.1
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/CONTRIBUTING.md +1 -1
- package/README.md +132 -40
- package/package.json +1 -2
- package/packs/afrikaans/keywords.json +39 -0
- package/packs/afrikaans/pack.json +40 -1
- package/packs/amharic/keywords.json +39 -0
- package/packs/amharic/pack.json +40 -1
- package/packs/arabic/keywords.json +39 -0
- package/packs/arabic/pack.json +40 -1
- package/packs/bambara/keywords.json +39 -0
- package/packs/bambara/pack.json +40 -1
- package/packs/by-country.json +1 -1
- package/packs/by-region.json +1 -1
- package/packs/coverage-summary.json +12 -12
- package/packs/french/keywords.json +39 -0
- package/packs/french/pack.json +40 -1
- package/packs/fulfulde/keywords.json +39 -0
- package/packs/fulfulde/pack.json +40 -1
- package/packs/hausa/keywords.json +39 -0
- package/packs/hausa/pack.json +40 -1
- package/packs/igbo/keywords.json +39 -0
- package/packs/igbo/pack.json +40 -1
- package/packs/index.json +25 -25
- package/packs/kinyarwanda/keywords.json +39 -0
- package/packs/kinyarwanda/pack.json +40 -1
- package/packs/languages-roadmap.json +151 -4
- package/packs/lingala/keywords.json +39 -0
- package/packs/lingala/pack.json +40 -1
- package/packs/logical-tokens.json +22 -8
- package/packs/luganda/keywords.json +39 -0
- package/packs/luganda/pack.json +40 -1
- package/packs/nigerian-pidgin/keywords.json +39 -0
- package/packs/nigerian-pidgin/pack.json +40 -1
- package/packs/official-target-keywords.json +16 -3
- package/packs/oromo/keywords.json +39 -0
- package/packs/oromo/pack.json +40 -1
- package/packs/portuguese-africa/keywords.json +39 -0
- package/packs/portuguese-africa/pack.json +40 -1
- package/packs/sesotho/keywords.json +39 -0
- package/packs/sesotho/pack.json +40 -1
- package/packs/setswana/keywords.json +39 -0
- package/packs/setswana/pack.json +40 -1
- package/packs/shona/keywords.json +39 -0
- package/packs/shona/pack.json +40 -1
- package/packs/somali/keywords.json +39 -0
- package/packs/somali/pack.json +40 -1
- package/packs/swahili/keywords.json +39 -0
- package/packs/swahili/pack.json +40 -1
- package/packs/target-coverage.json +90 -13
- package/packs/tigrinya/keywords.json +39 -0
- package/packs/tigrinya/pack.json +40 -1
- package/packs/twi/keywords.json +39 -0
- package/packs/twi/pack.json +40 -1
- package/packs/wolof/keywords.json +39 -0
- package/packs/wolof/pack.json +40 -1
- package/packs/xhosa/keywords.json +39 -0
- package/packs/xhosa/pack.json +40 -1
- package/packs/yoruba/keywords.json +39 -0
- package/packs/yoruba/pack.json +40 -1
- package/packs/zulu/keywords.json +39 -0
- package/packs/zulu/pack.json +40 -1
- package/badges/coverage.json +0 -6
- package/badges/packs.json +0 -6
- package/badges/targets.json +0 -6
- package/badges/tokens.json +0 -6
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "
|
|
3
|
-
"description": "Canonical logical tokens every language pack must map. targets.* values are emitted keywords; empty string means no direct keyword (transpiler uses another construct).",
|
|
2
|
+
"version": "4.0.0",
|
|
3
|
+
"description": "Canonical logical tokens every language pack must map. targets.* values are emitted keywords; empty string means no direct keyword (transpiler uses another construct). Includes a typescript-types tier for TS-only type keywords.",
|
|
4
4
|
"targets": ["javascript", "python", "typescript", "go", "rust"],
|
|
5
5
|
"required": ["IF", "FOR", "FUNCTION", "RETURN", "PRINT"],
|
|
6
6
|
"tokens": [
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
{ "logical": "AWAIT", "tier": "core", "group": "functions", "targets": { "javascript": "await", "python": "await", "typescript": "await", "go": "", "rust": "await" } },
|
|
28
28
|
{ "logical": "YIELD", "tier": "standard", "group": "functions", "targets": { "javascript": "yield", "python": "yield", "typescript": "yield", "go": "", "rust": "" } },
|
|
29
29
|
{ "logical": "LAMBDA", "tier": "standard", "group": "functions", "targets": { "javascript": "=>", "python": "lambda", "typescript": "=>", "go": "", "rust": "|" } },
|
|
30
|
-
{ "logical": "DEFER", "tier": "standard", "group": "functions", "targets": { "javascript": "", "python": "", "typescript": "", "go": "defer", "rust": "" } },
|
|
30
|
+
{ "logical": "DEFER", "tier": "standard", "group": "functions", "targets": { "javascript": "", "python": "", "typescript": "defer", "go": "defer", "rust": "" } },
|
|
31
31
|
{ "logical": "GO", "tier": "standard", "group": "functions", "targets": { "javascript": "", "python": "", "typescript": "", "go": "go", "rust": "" } },
|
|
32
32
|
|
|
33
33
|
{ "logical": "TRY", "tier": "core", "group": "errors", "targets": { "javascript": "try", "python": "try", "typescript": "try", "go": "", "rust": "" } },
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
{ "logical": "CONST", "tier": "core", "group": "variables", "targets": { "javascript": "const", "python": "", "typescript": "const", "go": "const", "rust": "const" } },
|
|
40
40
|
{ "logical": "VAR", "tier": "standard", "group": "variables", "targets": { "javascript": "var", "python": "", "typescript": "var", "go": "var", "rust": "" } },
|
|
41
41
|
{ "logical": "MUT", "tier": "standard", "group": "variables", "targets": { "javascript": "", "python": "", "typescript": "", "go": "", "rust": "mut" } },
|
|
42
|
-
{ "logical": "GLOBAL", "tier": "advanced", "group": "variables", "targets": { "javascript": "", "python": "global", "typescript": "", "go": "", "rust": "" } },
|
|
42
|
+
{ "logical": "GLOBAL", "tier": "advanced", "group": "variables", "targets": { "javascript": "", "python": "global", "typescript": "global", "go": "", "rust": "" } },
|
|
43
43
|
{ "logical": "NONLOCAL", "tier": "advanced", "group": "variables", "targets": { "javascript": "", "python": "nonlocal", "typescript": "", "go": "", "rust": "" } },
|
|
44
44
|
|
|
45
45
|
{ "logical": "CLASS", "tier": "core", "group": "types", "targets": { "javascript": "class", "python": "class", "typescript": "class", "go": "", "rust": "" } },
|
|
@@ -47,15 +47,15 @@
|
|
|
47
47
|
{ "logical": "TRAIT", "tier": "standard", "group": "types", "targets": { "javascript": "", "python": "", "typescript": "", "go": "", "rust": "trait" } },
|
|
48
48
|
{ "logical": "IMPL", "tier": "standard", "group": "types", "targets": { "javascript": "", "python": "", "typescript": "", "go": "", "rust": "impl" } },
|
|
49
49
|
{ "logical": "INTERFACE", "tier": "standard", "group": "types", "targets": { "javascript": "", "python": "", "typescript": "interface", "go": "interface", "rust": "" } },
|
|
50
|
-
{ "logical": "ENUM", "tier": "standard", "group": "types", "targets": { "javascript": "", "python": "", "typescript": "enum", "go": "", "rust": "enum" } },
|
|
51
|
-
{ "logical": "TYPE", "tier": "standard", "group": "types", "targets": { "javascript": "", "python": "", "typescript": "type", "go": "type", "rust": "type" } },
|
|
50
|
+
{ "logical": "ENUM", "tier": "standard", "group": "types", "targets": { "javascript": "enum", "python": "", "typescript": "enum", "go": "", "rust": "enum" } },
|
|
51
|
+
{ "logical": "TYPE", "tier": "standard", "group": "types", "targets": { "javascript": "", "python": "type", "typescript": "type", "go": "type", "rust": "type" } },
|
|
52
52
|
{ "logical": "EXTENDS", "tier": "core", "group": "types", "targets": { "javascript": "extends", "python": "", "typescript": "extends", "go": "", "rust": "" } },
|
|
53
53
|
{ "logical": "IMPLEMENTS", "tier": "advanced", "group": "types", "targets": { "javascript": "", "python": "", "typescript": "implements", "go": "", "rust": "" } },
|
|
54
54
|
{ "logical": "NEW", "tier": "core", "group": "types", "targets": { "javascript": "new", "python": "", "typescript": "new", "go": "", "rust": "" } },
|
|
55
55
|
{ "logical": "THIS", "tier": "core", "group": "types", "targets": { "javascript": "this", "python": "self", "typescript": "this", "go": "", "rust": "" } },
|
|
56
56
|
{ "logical": "SELF", "tier": "standard", "group": "types", "targets": { "javascript": "", "python": "self", "typescript": "", "go": "", "rust": "self" } },
|
|
57
57
|
{ "logical": "SUPER", "tier": "standard", "group": "types", "targets": { "javascript": "super", "python": "super", "typescript": "super", "go": "", "rust": "super" } },
|
|
58
|
-
{ "logical": "STATIC", "tier": "advanced", "group": "types", "targets": { "javascript": "static", "python": "", "typescript": "static", "go": "", "rust": "" } },
|
|
58
|
+
{ "logical": "STATIC", "tier": "advanced", "group": "types", "targets": { "javascript": "static", "python": "", "typescript": "static", "go": "", "rust": "static" } },
|
|
59
59
|
|
|
60
60
|
{ "logical": "IMPORT", "tier": "core", "group": "modules", "targets": { "javascript": "import", "python": "import", "typescript": "import", "go": "import", "rust": "use" } },
|
|
61
61
|
{ "logical": "EXPORT", "tier": "core", "group": "modules", "targets": { "javascript": "export", "python": "", "typescript": "export", "go": "", "rust": "pub" } },
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
{ "logical": "AS", "tier": "standard", "group": "modules", "targets": { "javascript": "as", "python": "as", "typescript": "as", "go": "", "rust": "as" } },
|
|
64
64
|
{ "logical": "MODULE", "tier": "standard", "group": "modules", "targets": { "javascript": "", "python": "", "typescript": "module", "go": "", "rust": "mod" } },
|
|
65
65
|
{ "logical": "NAMESPACE", "tier": "advanced", "group": "modules", "targets": { "javascript": "", "python": "", "typescript": "namespace", "go": "", "rust": "" } },
|
|
66
|
-
{ "logical": "PACKAGE", "tier": "standard", "group": "modules", "targets": { "javascript": "", "python": "", "typescript": "", "go": "package", "rust": "" } },
|
|
66
|
+
{ "logical": "PACKAGE", "tier": "standard", "group": "modules", "targets": { "javascript": "", "python": "", "typescript": "package", "go": "package", "rust": "" } },
|
|
67
67
|
{ "logical": "USE", "tier": "standard", "group": "modules", "targets": { "javascript": "", "python": "", "typescript": "", "go": "", "rust": "use" } },
|
|
68
68
|
{ "logical": "PUB", "tier": "standard", "group": "modules", "targets": { "javascript": "", "python": "", "typescript": "public", "go": "", "rust": "pub" } },
|
|
69
69
|
{ "logical": "CRATE", "tier": "advanced", "group": "modules", "targets": { "javascript": "", "python": "", "typescript": "", "go": "", "rust": "crate" } },
|
|
@@ -112,6 +112,20 @@
|
|
|
112
112
|
{ "logical": "UNIQUE", "tier": "advanced", "group": "types", "targets": { "javascript": "", "python": "", "typescript": "unique", "go": "", "rust": "" } },
|
|
113
113
|
{ "logical": "SATISFIES", "tier": "advanced", "group": "types", "targets": { "javascript": "", "python": "", "typescript": "satisfies", "go": "", "rust": "" } },
|
|
114
114
|
|
|
115
|
+
{ "logical": "ANY", "tier": "advanced", "group": "typescript-types", "targets": { "javascript": "", "python": "", "typescript": "any", "go": "", "rust": "" } },
|
|
116
|
+
{ "logical": "BOOLEAN", "tier": "advanced", "group": "typescript-types", "targets": { "javascript": "", "python": "", "typescript": "boolean", "go": "", "rust": "" } },
|
|
117
|
+
{ "logical": "NUMBER", "tier": "advanced", "group": "typescript-types", "targets": { "javascript": "", "python": "", "typescript": "number", "go": "", "rust": "" } },
|
|
118
|
+
{ "logical": "STRING", "tier": "advanced", "group": "typescript-types", "targets": { "javascript": "", "python": "", "typescript": "string", "go": "", "rust": "" } },
|
|
119
|
+
{ "logical": "SYMBOL", "tier": "advanced", "group": "typescript-types", "targets": { "javascript": "", "python": "", "typescript": "symbol", "go": "", "rust": "" } },
|
|
120
|
+
{ "logical": "OBJECT", "tier": "advanced", "group": "typescript-types", "targets": { "javascript": "", "python": "", "typescript": "object", "go": "", "rust": "" } },
|
|
121
|
+
{ "logical": "NEVER", "tier": "advanced", "group": "typescript-types", "targets": { "javascript": "", "python": "", "typescript": "never", "go": "", "rust": "" } },
|
|
122
|
+
{ "logical": "UNKNOWN", "tier": "advanced", "group": "typescript-types", "targets": { "javascript": "", "python": "", "typescript": "unknown", "go": "", "rust": "" } },
|
|
123
|
+
{ "logical": "BIGINT", "tier": "advanced", "group": "typescript-types", "targets": { "javascript": "", "python": "", "typescript": "bigint", "go": "", "rust": "" } },
|
|
124
|
+
{ "logical": "CONSTRUCTOR", "tier": "advanced", "group": "typescript-types", "targets": { "javascript": "", "python": "", "typescript": "constructor", "go": "", "rust": "" } },
|
|
125
|
+
{ "logical": "REQUIRE", "tier": "advanced", "group": "typescript-types", "targets": { "javascript": "", "python": "", "typescript": "require", "go": "", "rust": "" } },
|
|
126
|
+
{ "logical": "USING", "tier": "advanced", "group": "typescript-types", "targets": { "javascript": "", "python": "", "typescript": "using", "go": "", "rust": "" } },
|
|
127
|
+
{ "logical": "OF", "tier": "advanced", "group": "typescript-types", "targets": { "javascript": "", "python": "", "typescript": "of", "go": "", "rust": "" } },
|
|
128
|
+
|
|
115
129
|
{ "logical": "DYN", "tier": "advanced", "group": "systems", "targets": { "javascript": "", "python": "", "typescript": "", "go": "", "rust": "dyn" } },
|
|
116
130
|
{ "logical": "MOVE", "tier": "advanced", "group": "systems", "targets": { "javascript": "", "python": "", "typescript": "", "go": "", "rust": "move" } },
|
|
117
131
|
{ "logical": "REF", "tier": "advanced", "group": "systems", "targets": { "javascript": "", "python": "", "typescript": "", "go": "", "rust": "ref" } },
|
|
@@ -314,6 +314,45 @@
|
|
|
314
314
|
"SATISFIES": [
|
|
315
315
|
"satisfies"
|
|
316
316
|
],
|
|
317
|
+
"ANY": [
|
|
318
|
+
"any"
|
|
319
|
+
],
|
|
320
|
+
"BOOLEAN": [
|
|
321
|
+
"boolean"
|
|
322
|
+
],
|
|
323
|
+
"NUMBER": [
|
|
324
|
+
"number"
|
|
325
|
+
],
|
|
326
|
+
"STRING": [
|
|
327
|
+
"string"
|
|
328
|
+
],
|
|
329
|
+
"SYMBOL": [
|
|
330
|
+
"symbol"
|
|
331
|
+
],
|
|
332
|
+
"OBJECT": [
|
|
333
|
+
"object"
|
|
334
|
+
],
|
|
335
|
+
"NEVER": [
|
|
336
|
+
"never"
|
|
337
|
+
],
|
|
338
|
+
"UNKNOWN": [
|
|
339
|
+
"unknown"
|
|
340
|
+
],
|
|
341
|
+
"BIGINT": [
|
|
342
|
+
"bigint"
|
|
343
|
+
],
|
|
344
|
+
"CONSTRUCTOR": [
|
|
345
|
+
"constructor"
|
|
346
|
+
],
|
|
347
|
+
"REQUIRE": [
|
|
348
|
+
"require"
|
|
349
|
+
],
|
|
350
|
+
"USING": [
|
|
351
|
+
"using"
|
|
352
|
+
],
|
|
353
|
+
"OF": [
|
|
354
|
+
"of"
|
|
355
|
+
],
|
|
317
356
|
"DYN": [
|
|
318
357
|
"dyn"
|
|
319
358
|
],
|
package/packs/luganda/pack.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"regions": [
|
|
9
9
|
"East Africa"
|
|
10
10
|
],
|
|
11
|
-
"version": "0.1.
|
|
11
|
+
"version": "0.1.1",
|
|
12
12
|
"displayName": "Luganda",
|
|
13
13
|
"description": "Luganda keyword map — starter pack (community contributions welcome)",
|
|
14
14
|
"reviewStatus": "starter",
|
|
@@ -338,6 +338,45 @@
|
|
|
338
338
|
"SATISFIES": [
|
|
339
339
|
"satisfies"
|
|
340
340
|
],
|
|
341
|
+
"ANY": [
|
|
342
|
+
"any"
|
|
343
|
+
],
|
|
344
|
+
"BOOLEAN": [
|
|
345
|
+
"boolean"
|
|
346
|
+
],
|
|
347
|
+
"NUMBER": [
|
|
348
|
+
"number"
|
|
349
|
+
],
|
|
350
|
+
"STRING": [
|
|
351
|
+
"string"
|
|
352
|
+
],
|
|
353
|
+
"SYMBOL": [
|
|
354
|
+
"symbol"
|
|
355
|
+
],
|
|
356
|
+
"OBJECT": [
|
|
357
|
+
"object"
|
|
358
|
+
],
|
|
359
|
+
"NEVER": [
|
|
360
|
+
"never"
|
|
361
|
+
],
|
|
362
|
+
"UNKNOWN": [
|
|
363
|
+
"unknown"
|
|
364
|
+
],
|
|
365
|
+
"BIGINT": [
|
|
366
|
+
"bigint"
|
|
367
|
+
],
|
|
368
|
+
"CONSTRUCTOR": [
|
|
369
|
+
"constructor"
|
|
370
|
+
],
|
|
371
|
+
"REQUIRE": [
|
|
372
|
+
"require"
|
|
373
|
+
],
|
|
374
|
+
"USING": [
|
|
375
|
+
"using"
|
|
376
|
+
],
|
|
377
|
+
"OF": [
|
|
378
|
+
"of"
|
|
379
|
+
],
|
|
341
380
|
"DYN": [
|
|
342
381
|
"dyn"
|
|
343
382
|
],
|
|
@@ -317,6 +317,45 @@
|
|
|
317
317
|
"SATISFIES": [
|
|
318
318
|
"satisfies"
|
|
319
319
|
],
|
|
320
|
+
"ANY": [
|
|
321
|
+
"any"
|
|
322
|
+
],
|
|
323
|
+
"BOOLEAN": [
|
|
324
|
+
"boolean"
|
|
325
|
+
],
|
|
326
|
+
"NUMBER": [
|
|
327
|
+
"number"
|
|
328
|
+
],
|
|
329
|
+
"STRING": [
|
|
330
|
+
"string"
|
|
331
|
+
],
|
|
332
|
+
"SYMBOL": [
|
|
333
|
+
"symbol"
|
|
334
|
+
],
|
|
335
|
+
"OBJECT": [
|
|
336
|
+
"object"
|
|
337
|
+
],
|
|
338
|
+
"NEVER": [
|
|
339
|
+
"never"
|
|
340
|
+
],
|
|
341
|
+
"UNKNOWN": [
|
|
342
|
+
"unknown"
|
|
343
|
+
],
|
|
344
|
+
"BIGINT": [
|
|
345
|
+
"bigint"
|
|
346
|
+
],
|
|
347
|
+
"CONSTRUCTOR": [
|
|
348
|
+
"constructor"
|
|
349
|
+
],
|
|
350
|
+
"REQUIRE": [
|
|
351
|
+
"require"
|
|
352
|
+
],
|
|
353
|
+
"USING": [
|
|
354
|
+
"using"
|
|
355
|
+
],
|
|
356
|
+
"OF": [
|
|
357
|
+
"of"
|
|
358
|
+
],
|
|
320
359
|
"DYN": [
|
|
321
360
|
"dyn"
|
|
322
361
|
],
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"regions": [
|
|
9
9
|
"West Africa"
|
|
10
10
|
],
|
|
11
|
-
"version": "0.1.
|
|
11
|
+
"version": "0.1.1",
|
|
12
12
|
"displayName": "Nigerian Pidgin",
|
|
13
13
|
"description": "Nigerian Pidgin keyword map — bridge language for Nigerian developers",
|
|
14
14
|
"reviewStatus": "starter",
|
|
@@ -341,6 +341,45 @@
|
|
|
341
341
|
"SATISFIES": [
|
|
342
342
|
"satisfies"
|
|
343
343
|
],
|
|
344
|
+
"ANY": [
|
|
345
|
+
"any"
|
|
346
|
+
],
|
|
347
|
+
"BOOLEAN": [
|
|
348
|
+
"boolean"
|
|
349
|
+
],
|
|
350
|
+
"NUMBER": [
|
|
351
|
+
"number"
|
|
352
|
+
],
|
|
353
|
+
"STRING": [
|
|
354
|
+
"string"
|
|
355
|
+
],
|
|
356
|
+
"SYMBOL": [
|
|
357
|
+
"symbol"
|
|
358
|
+
],
|
|
359
|
+
"OBJECT": [
|
|
360
|
+
"object"
|
|
361
|
+
],
|
|
362
|
+
"NEVER": [
|
|
363
|
+
"never"
|
|
364
|
+
],
|
|
365
|
+
"UNKNOWN": [
|
|
366
|
+
"unknown"
|
|
367
|
+
],
|
|
368
|
+
"BIGINT": [
|
|
369
|
+
"bigint"
|
|
370
|
+
],
|
|
371
|
+
"CONSTRUCTOR": [
|
|
372
|
+
"constructor"
|
|
373
|
+
],
|
|
374
|
+
"REQUIRE": [
|
|
375
|
+
"require"
|
|
376
|
+
],
|
|
377
|
+
"USING": [
|
|
378
|
+
"using"
|
|
379
|
+
],
|
|
380
|
+
"OF": [
|
|
381
|
+
"of"
|
|
382
|
+
],
|
|
344
383
|
"DYN": [
|
|
345
384
|
"dyn"
|
|
346
385
|
],
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
2
|
+
"version": "1.2.0",
|
|
3
3
|
"description": "Official reserved keywords per transpile target (from language specs). Each keyword maps to exactly one logical token in logical-tokens.json.",
|
|
4
4
|
"sources": {
|
|
5
5
|
"javascript": {
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"False", "None", "True", "and", "as", "assert", "async", "await", "break", "class", "continue", "def", "del", "elif", "else", "except", "finally", "for", "from", "global", "if", "import", "in", "is", "lambda", "nonlocal", "not", "or", "pass", "raise", "return", "try", "while", "with", "yield", "_", "case", "match", "type"
|
|
32
32
|
],
|
|
33
33
|
"typescript": [
|
|
34
|
-
"abstract", "as", "asserts", "async", "await", "break", "case", "catch", "class", "const", "continue", "debugger", "declare", "default", "delete", "do", "else", "enum", "export", "extends", "false", "finally", "for", "from", "function", "get", "if", "implements", "import", "in", "instanceof", "interface", "is", "keyof", "let", "module", "namespace", "new", "null", "package", "private", "protected", "public", "readonly", "return", "set", "static", "super", "switch", "this", "throw", "true", "try", "typeof", "undefined", "unique", "
|
|
34
|
+
"abstract", "any", "as", "asserts", "async", "await", "bigint", "boolean", "break", "case", "catch", "class", "const", "constructor", "continue", "debugger", "declare", "default", "defer", "delete", "do", "else", "enum", "export", "extends", "false", "finally", "for", "from", "function", "get", "global", "if", "implements", "import", "in", "infer", "instanceof", "interface", "is", "keyof", "let", "module", "namespace", "never", "new", "null", "number", "object", "of", "package", "private", "protected", "public", "readonly", "require", "return", "set", "static", "string", "super", "switch", "symbol", "this", "throw", "true", "try", "type", "typeof", "undefined", "unique", "unknown", "using", "var", "void", "while", "with", "yield", "satisfies"
|
|
35
35
|
],
|
|
36
36
|
"go": [
|
|
37
37
|
"break", "case", "chan", "const", "continue", "default", "defer", "else", "fallthrough", "for", "func", "go", "goto", "if", "import", "interface", "map", "package", "range", "return", "select", "struct", "switch", "type", "var"
|
|
@@ -135,6 +135,19 @@
|
|
|
135
135
|
"keyof": "KEYOF",
|
|
136
136
|
"unique": "UNIQUE",
|
|
137
137
|
"satisfies": "SATISFIES",
|
|
138
|
+
"any": "ANY",
|
|
139
|
+
"boolean": "BOOLEAN",
|
|
140
|
+
"number": "NUMBER",
|
|
141
|
+
"string": "STRING",
|
|
142
|
+
"symbol": "SYMBOL",
|
|
143
|
+
"object": "OBJECT",
|
|
144
|
+
"never": "NEVER",
|
|
145
|
+
"unknown": "UNKNOWN",
|
|
146
|
+
"bigint": "BIGINT",
|
|
147
|
+
"constructor": "CONSTRUCTOR",
|
|
148
|
+
"require": "REQUIRE",
|
|
149
|
+
"using": "USING",
|
|
150
|
+
"of": "OF",
|
|
138
151
|
"unsafe": "UNSAFE",
|
|
139
152
|
"extern": "EXTERN",
|
|
140
153
|
"chan": "CHAN",
|
|
@@ -156,7 +169,7 @@
|
|
|
156
169
|
"notes": {
|
|
157
170
|
"javascript": "ECMA-262 §12.7.2 ReservedWord: 38 tokens (includes null, true, false). Excludes strict-mode future reserved words (let, implements, interface, package, private, protected, public, static) and contextual keywords such as async.",
|
|
158
171
|
"python": "Python 3.12: 35 hard keywords (keyword.kwlist) + 4 soft keywords (keyword.softkwlist: _, case, match, type) = 39 total.",
|
|
159
|
-
"typescript": "The TypeScript Handbook does not publish a single official keyword count. This list tracks
|
|
172
|
+
"typescript": "The TypeScript Handbook does not publish a single official keyword count. This list tracks 79 reserved/type-modifier/contextual tokens for transpilation coverage (JS superset + TS-only modifiers + type keywords tier).",
|
|
160
173
|
"go": "Go spec §Keywords: exactly 25 keywords.",
|
|
161
174
|
"rust": "Rust Reference strict keywords: 39 tokens (includes _).",
|
|
162
175
|
"print": "print is a Python builtin, not a keyword — mapped via PRINT logical token for transpilation.",
|
|
@@ -314,6 +314,45 @@
|
|
|
314
314
|
"SATISFIES": [
|
|
315
315
|
"satisfies"
|
|
316
316
|
],
|
|
317
|
+
"ANY": [
|
|
318
|
+
"any"
|
|
319
|
+
],
|
|
320
|
+
"BOOLEAN": [
|
|
321
|
+
"boolean"
|
|
322
|
+
],
|
|
323
|
+
"NUMBER": [
|
|
324
|
+
"number"
|
|
325
|
+
],
|
|
326
|
+
"STRING": [
|
|
327
|
+
"string"
|
|
328
|
+
],
|
|
329
|
+
"SYMBOL": [
|
|
330
|
+
"symbol"
|
|
331
|
+
],
|
|
332
|
+
"OBJECT": [
|
|
333
|
+
"object"
|
|
334
|
+
],
|
|
335
|
+
"NEVER": [
|
|
336
|
+
"never"
|
|
337
|
+
],
|
|
338
|
+
"UNKNOWN": [
|
|
339
|
+
"unknown"
|
|
340
|
+
],
|
|
341
|
+
"BIGINT": [
|
|
342
|
+
"bigint"
|
|
343
|
+
],
|
|
344
|
+
"CONSTRUCTOR": [
|
|
345
|
+
"constructor"
|
|
346
|
+
],
|
|
347
|
+
"REQUIRE": [
|
|
348
|
+
"require"
|
|
349
|
+
],
|
|
350
|
+
"USING": [
|
|
351
|
+
"using"
|
|
352
|
+
],
|
|
353
|
+
"OF": [
|
|
354
|
+
"of"
|
|
355
|
+
],
|
|
317
356
|
"DYN": [
|
|
318
357
|
"dyn"
|
|
319
358
|
],
|
package/packs/oromo/pack.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"regions": [
|
|
10
10
|
"East Africa"
|
|
11
11
|
],
|
|
12
|
-
"version": "0.1.
|
|
12
|
+
"version": "0.1.1",
|
|
13
13
|
"displayName": "Oromo",
|
|
14
14
|
"description": "Oromo keyword map — starter pack (community contributions welcome)",
|
|
15
15
|
"reviewStatus": "starter",
|
|
@@ -339,6 +339,45 @@
|
|
|
339
339
|
"SATISFIES": [
|
|
340
340
|
"satisfies"
|
|
341
341
|
],
|
|
342
|
+
"ANY": [
|
|
343
|
+
"any"
|
|
344
|
+
],
|
|
345
|
+
"BOOLEAN": [
|
|
346
|
+
"boolean"
|
|
347
|
+
],
|
|
348
|
+
"NUMBER": [
|
|
349
|
+
"number"
|
|
350
|
+
],
|
|
351
|
+
"STRING": [
|
|
352
|
+
"string"
|
|
353
|
+
],
|
|
354
|
+
"SYMBOL": [
|
|
355
|
+
"symbol"
|
|
356
|
+
],
|
|
357
|
+
"OBJECT": [
|
|
358
|
+
"object"
|
|
359
|
+
],
|
|
360
|
+
"NEVER": [
|
|
361
|
+
"never"
|
|
362
|
+
],
|
|
363
|
+
"UNKNOWN": [
|
|
364
|
+
"unknown"
|
|
365
|
+
],
|
|
366
|
+
"BIGINT": [
|
|
367
|
+
"bigint"
|
|
368
|
+
],
|
|
369
|
+
"CONSTRUCTOR": [
|
|
370
|
+
"constructor"
|
|
371
|
+
],
|
|
372
|
+
"REQUIRE": [
|
|
373
|
+
"require"
|
|
374
|
+
],
|
|
375
|
+
"USING": [
|
|
376
|
+
"using"
|
|
377
|
+
],
|
|
378
|
+
"OF": [
|
|
379
|
+
"of"
|
|
380
|
+
],
|
|
342
381
|
"DYN": [
|
|
343
382
|
"dyn"
|
|
344
383
|
],
|
|
@@ -284,6 +284,45 @@
|
|
|
284
284
|
"SATISFIES": [
|
|
285
285
|
"satisfies"
|
|
286
286
|
],
|
|
287
|
+
"ANY": [
|
|
288
|
+
"any"
|
|
289
|
+
],
|
|
290
|
+
"BOOLEAN": [
|
|
291
|
+
"boolean"
|
|
292
|
+
],
|
|
293
|
+
"NUMBER": [
|
|
294
|
+
"number"
|
|
295
|
+
],
|
|
296
|
+
"STRING": [
|
|
297
|
+
"string"
|
|
298
|
+
],
|
|
299
|
+
"SYMBOL": [
|
|
300
|
+
"symbol"
|
|
301
|
+
],
|
|
302
|
+
"OBJECT": [
|
|
303
|
+
"object"
|
|
304
|
+
],
|
|
305
|
+
"NEVER": [
|
|
306
|
+
"never"
|
|
307
|
+
],
|
|
308
|
+
"UNKNOWN": [
|
|
309
|
+
"unknown"
|
|
310
|
+
],
|
|
311
|
+
"BIGINT": [
|
|
312
|
+
"bigint"
|
|
313
|
+
],
|
|
314
|
+
"CONSTRUCTOR": [
|
|
315
|
+
"constructor"
|
|
316
|
+
],
|
|
317
|
+
"REQUIRE": [
|
|
318
|
+
"require"
|
|
319
|
+
],
|
|
320
|
+
"USING": [
|
|
321
|
+
"using"
|
|
322
|
+
],
|
|
323
|
+
"OF": [
|
|
324
|
+
"of"
|
|
325
|
+
],
|
|
287
326
|
"DYN": [
|
|
288
327
|
"dyn"
|
|
289
328
|
],
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"Southern Africa",
|
|
14
14
|
"West Africa"
|
|
15
15
|
],
|
|
16
|
-
"version": "0.1.
|
|
16
|
+
"version": "0.1.1",
|
|
17
17
|
"displayName": "Portuguese (Africa)",
|
|
18
18
|
"description": "Portuguese keyword map for Lusophone Africa — starter pack",
|
|
19
19
|
"reviewStatus": "starter",
|
|
@@ -313,6 +313,45 @@
|
|
|
313
313
|
"SATISFIES": [
|
|
314
314
|
"satisfies"
|
|
315
315
|
],
|
|
316
|
+
"ANY": [
|
|
317
|
+
"any"
|
|
318
|
+
],
|
|
319
|
+
"BOOLEAN": [
|
|
320
|
+
"boolean"
|
|
321
|
+
],
|
|
322
|
+
"NUMBER": [
|
|
323
|
+
"number"
|
|
324
|
+
],
|
|
325
|
+
"STRING": [
|
|
326
|
+
"string"
|
|
327
|
+
],
|
|
328
|
+
"SYMBOL": [
|
|
329
|
+
"symbol"
|
|
330
|
+
],
|
|
331
|
+
"OBJECT": [
|
|
332
|
+
"object"
|
|
333
|
+
],
|
|
334
|
+
"NEVER": [
|
|
335
|
+
"never"
|
|
336
|
+
],
|
|
337
|
+
"UNKNOWN": [
|
|
338
|
+
"unknown"
|
|
339
|
+
],
|
|
340
|
+
"BIGINT": [
|
|
341
|
+
"bigint"
|
|
342
|
+
],
|
|
343
|
+
"CONSTRUCTOR": [
|
|
344
|
+
"constructor"
|
|
345
|
+
],
|
|
346
|
+
"REQUIRE": [
|
|
347
|
+
"require"
|
|
348
|
+
],
|
|
349
|
+
"USING": [
|
|
350
|
+
"using"
|
|
351
|
+
],
|
|
352
|
+
"OF": [
|
|
353
|
+
"of"
|
|
354
|
+
],
|
|
316
355
|
"DYN": [
|
|
317
356
|
"dyn"
|
|
318
357
|
],
|
|
@@ -284,6 +284,45 @@
|
|
|
284
284
|
"SATISFIES": [
|
|
285
285
|
"satisfies"
|
|
286
286
|
],
|
|
287
|
+
"ANY": [
|
|
288
|
+
"any"
|
|
289
|
+
],
|
|
290
|
+
"BOOLEAN": [
|
|
291
|
+
"boolean"
|
|
292
|
+
],
|
|
293
|
+
"NUMBER": [
|
|
294
|
+
"number"
|
|
295
|
+
],
|
|
296
|
+
"STRING": [
|
|
297
|
+
"string"
|
|
298
|
+
],
|
|
299
|
+
"SYMBOL": [
|
|
300
|
+
"symbol"
|
|
301
|
+
],
|
|
302
|
+
"OBJECT": [
|
|
303
|
+
"object"
|
|
304
|
+
],
|
|
305
|
+
"NEVER": [
|
|
306
|
+
"never"
|
|
307
|
+
],
|
|
308
|
+
"UNKNOWN": [
|
|
309
|
+
"unknown"
|
|
310
|
+
],
|
|
311
|
+
"BIGINT": [
|
|
312
|
+
"bigint"
|
|
313
|
+
],
|
|
314
|
+
"CONSTRUCTOR": [
|
|
315
|
+
"constructor"
|
|
316
|
+
],
|
|
317
|
+
"REQUIRE": [
|
|
318
|
+
"require"
|
|
319
|
+
],
|
|
320
|
+
"USING": [
|
|
321
|
+
"using"
|
|
322
|
+
],
|
|
323
|
+
"OF": [
|
|
324
|
+
"of"
|
|
325
|
+
],
|
|
287
326
|
"DYN": [
|
|
288
327
|
"dyn"
|
|
289
328
|
],
|
package/packs/sesotho/pack.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"regions": [
|
|
10
10
|
"Southern Africa"
|
|
11
11
|
],
|
|
12
|
-
"version": "0.1.
|
|
12
|
+
"version": "0.1.1",
|
|
13
13
|
"displayName": "Sesotho",
|
|
14
14
|
"description": "Sesotho keyword map — starter pack (community contributions welcome)",
|
|
15
15
|
"reviewStatus": "starter",
|
|
@@ -309,6 +309,45 @@
|
|
|
309
309
|
"SATISFIES": [
|
|
310
310
|
"satisfies"
|
|
311
311
|
],
|
|
312
|
+
"ANY": [
|
|
313
|
+
"any"
|
|
314
|
+
],
|
|
315
|
+
"BOOLEAN": [
|
|
316
|
+
"boolean"
|
|
317
|
+
],
|
|
318
|
+
"NUMBER": [
|
|
319
|
+
"number"
|
|
320
|
+
],
|
|
321
|
+
"STRING": [
|
|
322
|
+
"string"
|
|
323
|
+
],
|
|
324
|
+
"SYMBOL": [
|
|
325
|
+
"symbol"
|
|
326
|
+
],
|
|
327
|
+
"OBJECT": [
|
|
328
|
+
"object"
|
|
329
|
+
],
|
|
330
|
+
"NEVER": [
|
|
331
|
+
"never"
|
|
332
|
+
],
|
|
333
|
+
"UNKNOWN": [
|
|
334
|
+
"unknown"
|
|
335
|
+
],
|
|
336
|
+
"BIGINT": [
|
|
337
|
+
"bigint"
|
|
338
|
+
],
|
|
339
|
+
"CONSTRUCTOR": [
|
|
340
|
+
"constructor"
|
|
341
|
+
],
|
|
342
|
+
"REQUIRE": [
|
|
343
|
+
"require"
|
|
344
|
+
],
|
|
345
|
+
"USING": [
|
|
346
|
+
"using"
|
|
347
|
+
],
|
|
348
|
+
"OF": [
|
|
349
|
+
"of"
|
|
350
|
+
],
|
|
312
351
|
"DYN": [
|
|
313
352
|
"dyn"
|
|
314
353
|
],
|