@stevenvo780/st-lang 0.3.0 → 0.5.0

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 (124) hide show
  1. package/README.md +86 -0
  2. package/dist/api.d.ts +13 -2
  3. package/dist/api.d.ts.map +1 -1
  4. package/dist/api.js +121 -20
  5. package/dist/api.js.map +1 -1
  6. package/dist/ast/nodes.d.ts +1 -0
  7. package/dist/ast/nodes.d.ts.map +1 -1
  8. package/dist/cli/index.d.ts +1 -0
  9. package/dist/cli/index.js +116 -182
  10. package/dist/cli/index.js.map +1 -1
  11. package/dist/index.d.ts +4 -1
  12. package/dist/index.d.ts.map +1 -1
  13. package/dist/index.js +3 -3
  14. package/dist/index.js.map +1 -1
  15. package/dist/lexer/lexer.d.ts +3 -0
  16. package/dist/lexer/lexer.d.ts.map +1 -1
  17. package/dist/lexer/lexer.js +15 -7
  18. package/dist/lexer/lexer.js.map +1 -1
  19. package/dist/lexer/tokens.d.ts +4 -0
  20. package/dist/lexer/tokens.d.ts.map +1 -1
  21. package/dist/lexer/tokens.js +28 -21
  22. package/dist/lexer/tokens.js.map +1 -1
  23. package/dist/parser/parser.d.ts +4 -0
  24. package/dist/parser/parser.d.ts.map +1 -1
  25. package/dist/parser/parser.js +107 -23
  26. package/dist/parser/parser.js.map +1 -1
  27. package/dist/profiles/aristotelian/syllogistic.d.ts +13 -0
  28. package/dist/profiles/aristotelian/syllogistic.d.ts.map +1 -0
  29. package/dist/profiles/aristotelian/syllogistic.js +364 -0
  30. package/dist/profiles/aristotelian/syllogistic.js.map +1 -0
  31. package/dist/profiles/classical/first-order.d.ts +7 -2
  32. package/dist/profiles/classical/first-order.d.ts.map +1 -1
  33. package/dist/profiles/classical/first-order.js +144 -29
  34. package/dist/profiles/classical/first-order.js.map +1 -1
  35. package/dist/profiles/classical/propositional.d.ts +1 -0
  36. package/dist/profiles/classical/propositional.d.ts.map +1 -1
  37. package/dist/profiles/classical/propositional.js +175 -61
  38. package/dist/profiles/classical/propositional.js.map +1 -1
  39. package/dist/profiles/deontic/standard.d.ts +10 -0
  40. package/dist/profiles/deontic/standard.d.ts.map +1 -0
  41. package/dist/profiles/deontic/standard.js +74 -0
  42. package/dist/profiles/deontic/standard.js.map +1 -0
  43. package/dist/profiles/epistemic/s5.d.ts +10 -0
  44. package/dist/profiles/epistemic/s5.d.ts.map +1 -0
  45. package/dist/profiles/epistemic/s5.js +70 -0
  46. package/dist/profiles/epistemic/s5.js.map +1 -0
  47. package/dist/profiles/index.d.ts +13 -0
  48. package/dist/profiles/index.d.ts.map +1 -0
  49. package/dist/profiles/index.js +58 -0
  50. package/dist/profiles/index.js.map +1 -0
  51. package/dist/profiles/interface.d.ts.map +1 -1
  52. package/dist/profiles/intuitionistic/propositional.d.ts +14 -0
  53. package/dist/profiles/intuitionistic/propositional.d.ts.map +1 -0
  54. package/dist/profiles/intuitionistic/propositional.js +377 -0
  55. package/dist/profiles/intuitionistic/propositional.js.map +1 -0
  56. package/dist/profiles/modal/k.d.ts +6 -9
  57. package/dist/profiles/modal/k.d.ts.map +1 -1
  58. package/dist/profiles/modal/k.js +50 -27
  59. package/dist/profiles/modal/k.js.map +1 -1
  60. package/dist/profiles/paraconsistent/belnap.d.ts +17 -1
  61. package/dist/profiles/paraconsistent/belnap.d.ts.map +1 -1
  62. package/dist/profiles/paraconsistent/belnap.js +195 -11
  63. package/dist/profiles/paraconsistent/belnap.js.map +1 -1
  64. package/dist/profiles/probabilistic/basic.d.ts +17 -0
  65. package/dist/profiles/probabilistic/basic.d.ts.map +1 -0
  66. package/dist/profiles/probabilistic/basic.js +295 -0
  67. package/dist/profiles/probabilistic/basic.js.map +1 -0
  68. package/dist/profiles/shared/base-profile.d.ts +19 -0
  69. package/dist/profiles/shared/base-profile.d.ts.map +1 -0
  70. package/dist/profiles/shared/base-profile.js +129 -0
  71. package/dist/profiles/shared/base-profile.js.map +1 -0
  72. package/dist/profiles/shared/tableau-engine.d.ts +66 -0
  73. package/dist/profiles/shared/tableau-engine.d.ts.map +1 -0
  74. package/dist/profiles/shared/tableau-engine.js +439 -0
  75. package/dist/profiles/shared/tableau-engine.js.map +1 -0
  76. package/dist/profiles/temporal/ltl.d.ts +10 -0
  77. package/dist/profiles/temporal/ltl.d.ts.map +1 -0
  78. package/dist/profiles/temporal/ltl.js +75 -0
  79. package/dist/profiles/temporal/ltl.js.map +1 -0
  80. package/dist/protocol/handler.d.ts.map +1 -1
  81. package/dist/protocol/handler.js +289 -22
  82. package/dist/protocol/handler.js.map +1 -1
  83. package/dist/repl/repl.d.ts.map +1 -1
  84. package/dist/repl/repl.js +9 -6
  85. package/dist/repl/repl.js.map +1 -1
  86. package/dist/runtime/interpreter.d.ts +5 -2
  87. package/dist/runtime/interpreter.d.ts.map +1 -1
  88. package/dist/runtime/interpreter.js +88 -67
  89. package/dist/runtime/interpreter.js.map +1 -1
  90. package/dist/tests/cli.test.d.ts +1 -1
  91. package/dist/tests/cli.test.d.ts.map +1 -1
  92. package/dist/tests/cli.test.js +112 -115
  93. package/dist/tests/cli.test.js.map +1 -1
  94. package/dist/tests/core.test.d.ts +1 -1
  95. package/dist/tests/core.test.d.ts.map +1 -1
  96. package/dist/tests/core.test.js +175 -174
  97. package/dist/tests/core.test.js.map +1 -1
  98. package/dist/tests/engines.test.d.ts +2 -0
  99. package/dist/tests/engines.test.d.ts.map +1 -0
  100. package/dist/tests/engines.test.js +81 -0
  101. package/dist/tests/engines.test.js.map +1 -0
  102. package/dist/tests/parser.test.d.ts +1 -1
  103. package/dist/tests/parser.test.d.ts.map +1 -1
  104. package/dist/tests/parser.test.js +162 -165
  105. package/dist/tests/parser.test.js.map +1 -1
  106. package/dist/tests/philosophy.test.d.ts +2 -0
  107. package/dist/tests/philosophy.test.d.ts.map +1 -0
  108. package/dist/tests/philosophy.test.js +588 -0
  109. package/dist/tests/philosophy.test.js.map +1 -0
  110. package/dist/tests/profiles.test.d.ts +2 -0
  111. package/dist/tests/profiles.test.d.ts.map +1 -0
  112. package/dist/tests/profiles.test.js +250 -0
  113. package/dist/tests/profiles.test.js.map +1 -0
  114. package/dist/text-layer/compiler.d.ts +5 -9
  115. package/dist/text-layer/compiler.d.ts.map +1 -1
  116. package/dist/text-layer/compiler.js +6 -4
  117. package/dist/text-layer/compiler.js.map +1 -1
  118. package/dist/types/index.d.ts +10 -1
  119. package/dist/types/index.d.ts.map +1 -1
  120. package/package.json +24 -7
  121. package/dist/tests/runner.d.ts +0 -6
  122. package/dist/tests/runner.d.ts.map +0 -1
  123. package/dist/tests/runner.js +0 -69
  124. package/dist/tests/runner.js.map +0 -1
@@ -3,13 +3,11 @@
3
3
  // ST Tests — CLI / Integration (ejecutan el intérprete completo)
4
4
  // ============================================================
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.runCLITests = runCLITests;
7
- const runner_1 = require("./runner");
6
+ const vitest_1 = require("vitest");
8
7
  const interpreter_1 = require("../runtime/interpreter");
9
- function runCLITests() {
10
- (0, runner_1.describe)('Interpreter script completo (criterio de exito 02)', () => {
11
- (0, runner_1.it)('ejecuta el script de criterio de exito del Logic Core', () => {
12
- const source = `
8
+ (0, vitest_1.describe)('Interpreter — script completo (criterio de exito 02)', () => {
9
+ (0, vitest_1.it)('ejecuta el script de criterio de exito del Logic Core', () => {
10
+ const source = `
13
11
  logic classical.propositional
14
12
 
15
13
  axiom a1 = P -> Q
@@ -18,111 +16,111 @@ axiom a2 = P
18
16
  derive Q from {a1, a2}
19
17
  check valid ((P -> Q) -> (!Q -> !P))
20
18
  `;
21
- const interpreter = new interpreter_1.Interpreter();
22
- const output = interpreter.execute(source, 'test.st');
23
- (0, runner_1.assertEqual)(output.exitCode, 0, `Exit code deberia ser 0, fue ${output.exitCode}. stderr: ${output.stderr}`);
24
- (0, runner_1.assertIncludes)(output.stdout, 'Perfil logico: classical.propositional');
25
- (0, runner_1.assertIncludes)(output.stdout, 'derivado');
26
- // El check valid debe dar valid (es contraposicion, tautologia)
27
- const validResult = output.results.find(r => r.status === 'valid');
28
- (0, runner_1.assert)(validResult !== undefined, 'Deberia haber un resultado valid');
29
- });
19
+ const interpreter = new interpreter_1.Interpreter();
20
+ const output = interpreter.execute(source, 'test.st');
21
+ (0, vitest_1.expect)(output.exitCode).toBe(0);
22
+ (0, vitest_1.expect)(output.stdout).toContain('Perfil logico: classical.propositional');
23
+ (0, vitest_1.expect)(output.stdout).toContain('derivado');
24
+ // El check valid debe dar valid (es contraposicion, tautologia)
25
+ const validResult = output.results.find((r) => r.status === 'valid');
26
+ (0, vitest_1.expect)(validResult).toBeDefined();
30
27
  });
31
- (0, runner_1.describe)('Interpreter — derivaciones', () => {
32
- (0, runner_1.it)('Modus Ponens simple', () => {
33
- const source = `
28
+ });
29
+ (0, vitest_1.describe)('Interpreter derivaciones', () => {
30
+ (0, vitest_1.it)('Modus Ponens simple', () => {
31
+ const source = `
34
32
  logic classical.propositional
35
33
  axiom a1 = P -> Q
36
34
  axiom a2 = P
37
35
  derive Q from {a1, a2}
38
36
  `;
39
- const interpreter = new interpreter_1.Interpreter();
40
- const output = interpreter.execute(source);
41
- (0, runner_1.assertEqual)(output.exitCode, 0);
42
- const deriveResult = output.results[0];
43
- (0, runner_1.assertEqual)(deriveResult.status, 'provable');
44
- });
45
- (0, runner_1.it)('derivacion que falla', () => {
46
- const source = `
37
+ const interpreter = new interpreter_1.Interpreter();
38
+ const output = interpreter.execute(source);
39
+ (0, vitest_1.expect)(output.exitCode).toBe(0);
40
+ const deriveResult = output.results[0];
41
+ (0, vitest_1.expect)(deriveResult.status).toBe('provable');
42
+ });
43
+ (0, vitest_1.it)('derivacion que falla', () => {
44
+ const source = `
47
45
  logic classical.propositional
48
46
  axiom a1 = P
49
47
  derive Q from {a1}
50
48
  `;
51
- const interpreter = new interpreter_1.Interpreter();
52
- const output = interpreter.execute(source);
53
- const deriveResult = output.results[0];
54
- (0, runner_1.assertEqual)(deriveResult.status, 'refutable');
55
- });
49
+ const interpreter = new interpreter_1.Interpreter();
50
+ const output = interpreter.execute(source);
51
+ const deriveResult = output.results[0];
52
+ (0, vitest_1.expect)(deriveResult.status).toBe('refutable');
56
53
  });
57
- (0, runner_1.describe)('Interpreter — check valid', () => {
58
- (0, runner_1.it)('tautologia detectada', () => {
59
- const source = `
54
+ });
55
+ (0, vitest_1.describe)('Interpreter — check valid', () => {
56
+ (0, vitest_1.it)('tautologia detectada', () => {
57
+ const source = `
60
58
  logic classical.propositional
61
59
  check valid (P | !P)
62
60
  `;
63
- const interpreter = new interpreter_1.Interpreter();
64
- const output = interpreter.execute(source);
65
- (0, runner_1.assertEqual)(output.results[0].status, 'valid');
66
- });
67
- (0, runner_1.it)('contingente detectada', () => {
68
- const source = `
61
+ const interpreter = new interpreter_1.Interpreter();
62
+ const output = interpreter.execute(source);
63
+ (0, vitest_1.expect)(output.results[0].status).toBe('valid');
64
+ });
65
+ (0, vitest_1.it)('contingente detectada', () => {
66
+ const source = `
69
67
  logic classical.propositional
70
68
  check valid (P -> Q)
71
69
  `;
72
- const interpreter = new interpreter_1.Interpreter();
73
- const output = interpreter.execute(source);
74
- (0, runner_1.assertEqual)(output.results[0].status, 'invalid');
75
- });
70
+ const interpreter = new interpreter_1.Interpreter();
71
+ const output = interpreter.execute(source);
72
+ (0, vitest_1.expect)(output.results[0].status).toBe('invalid');
76
73
  });
77
- (0, runner_1.describe)('Interpreter — check satisfiable', () => {
78
- (0, runner_1.it)('satisfacible', () => {
79
- const source = `
74
+ });
75
+ (0, vitest_1.describe)('Interpreter — check satisfiable', () => {
76
+ (0, vitest_1.it)('satisfacible', () => {
77
+ const source = `
80
78
  logic classical.propositional
81
79
  check satisfiable (P & Q)
82
80
  `;
83
- const interpreter = new interpreter_1.Interpreter();
84
- const output = interpreter.execute(source);
85
- (0, runner_1.assertEqual)(output.results[0].status, 'satisfiable');
86
- });
87
- (0, runner_1.it)('insatisfacible (contradiccion)', () => {
88
- const source = `
81
+ const interpreter = new interpreter_1.Interpreter();
82
+ const output = interpreter.execute(source);
83
+ (0, vitest_1.expect)(output.results[0].status).toBe('satisfiable');
84
+ });
85
+ (0, vitest_1.it)('insatisfacible (contradiccion)', () => {
86
+ const source = `
89
87
  logic classical.propositional
90
88
  check satisfiable (P & !P)
91
89
  `;
92
- const interpreter = new interpreter_1.Interpreter();
93
- const output = interpreter.execute(source);
94
- (0, runner_1.assertEqual)(output.results[0].status, 'unsatisfiable');
95
- });
90
+ const interpreter = new interpreter_1.Interpreter();
91
+ const output = interpreter.execute(source);
92
+ (0, vitest_1.expect)(output.results[0].status).toBe('unsatisfiable');
96
93
  });
97
- (0, runner_1.describe)('Interpreter — countermodel', () => {
98
- (0, runner_1.it)('encuentra contramodelo', () => {
99
- const source = `
94
+ });
95
+ (0, vitest_1.describe)('Interpreter — countermodel', () => {
96
+ (0, vitest_1.it)('encuentra contramodelo', () => {
97
+ const source = `
100
98
  logic classical.propositional
101
99
  countermodel (P -> Q)
102
100
  `;
103
- const interpreter = new interpreter_1.Interpreter();
104
- const output = interpreter.execute(source);
105
- (0, runner_1.assertEqual)(output.results[0].status, 'invalid');
106
- (0, runner_1.assert)(output.results[0].model !== undefined, 'Debe dar modelo');
107
- });
101
+ const interpreter = new interpreter_1.Interpreter();
102
+ const output = interpreter.execute(source);
103
+ (0, vitest_1.expect)(output.results[0].status).toBe('invalid');
104
+ (0, vitest_1.expect)(output.results[0].model).toBeDefined();
108
105
  });
109
- (0, runner_1.describe)('Interpreter — truth_table', () => {
110
- (0, runner_1.it)('genera tabla de verdad', () => {
111
- const source = `
106
+ });
107
+ (0, vitest_1.describe)('Interpreter truth_table', () => {
108
+ (0, vitest_1.it)('genera tabla de verdad', () => {
109
+ const source = `
112
110
  logic classical.propositional
113
111
  truth_table (P & Q)
114
112
  `;
115
- const interpreter = new interpreter_1.Interpreter();
116
- const output = interpreter.execute(source);
117
- (0, runner_1.assertIncludes)(output.stdout, 'P');
118
- (0, runner_1.assertIncludes)(output.stdout, 'Q');
119
- (0, runner_1.assertIncludes)(output.stdout, 'T');
120
- (0, runner_1.assertIncludes)(output.stdout, 'F');
121
- });
113
+ const interpreter = new interpreter_1.Interpreter();
114
+ const output = interpreter.execute(source);
115
+ (0, vitest_1.expect)(output.stdout).toContain('P');
116
+ (0, vitest_1.expect)(output.stdout).toContain('Q');
117
+ (0, vitest_1.expect)(output.stdout).toContain('T');
118
+ (0, vitest_1.expect)(output.stdout).toContain('F');
122
119
  });
123
- (0, runner_1.describe)('Interpreter — text layer completo', () => {
124
- (0, runner_1.it)('ejecuta script con text layer (criterio exito 04)', () => {
125
- const source = `
120
+ });
121
+ (0, vitest_1.describe)('Interpreter text layer completo', () => {
122
+ (0, vitest_1.it)('ejecuta script con text layer (criterio exito 04)', () => {
123
+ const source = `
126
124
  logic classical.propositional
127
125
 
128
126
  let p = passage([[clase-logica.md#b8]])
@@ -132,53 +130,52 @@ claim c1 = phi
132
130
  support c1 <- p
133
131
  confidence c1 = 0.84
134
132
  `;
135
- const interpreter = new interpreter_1.Interpreter();
136
- const output = interpreter.execute(source);
137
- (0, runner_1.assertEqual)(output.exitCode, 0, `Exit code deberia ser 0. stderr: ${output.stderr}`);
138
- (0, runner_1.assertIncludes)(output.stdout, 'Passage p');
139
- (0, runner_1.assertIncludes)(output.stdout, 'Formalizacion phi');
140
- (0, runner_1.assertIncludes)(output.stdout, 'Claim c1');
141
- (0, runner_1.assertIncludes)(output.stdout, 'Support');
142
- (0, runner_1.assertIncludes)(output.stdout, 'Confidence');
143
- });
133
+ const interpreter = new interpreter_1.Interpreter();
134
+ const output = interpreter.execute(source);
135
+ (0, vitest_1.expect)(output.exitCode).toBe(0);
136
+ (0, vitest_1.expect)(output.stdout).toContain('Passage p');
137
+ (0, vitest_1.expect)(output.stdout).toContain('Formalizacion phi');
138
+ (0, vitest_1.expect)(output.stdout).toContain('Claim c1');
139
+ (0, vitest_1.expect)(output.stdout).toContain('Support');
140
+ (0, vitest_1.expect)(output.stdout).toContain('Confidence');
144
141
  });
145
- (0, runner_1.describe)('Interpreter — check equivalent', () => {
146
- (0, runner_1.it)('P->Q equivale a !P|Q', () => {
147
- const source = `
142
+ });
143
+ (0, vitest_1.describe)('Interpreter check equivalent', () => {
144
+ (0, vitest_1.it)('P->Q equivale a !P|Q', () => {
145
+ const source = `
148
146
  logic classical.propositional
149
147
  check equivalent (P -> Q), (!P | Q)
150
148
  `;
151
- const interpreter = new interpreter_1.Interpreter();
152
- const output = interpreter.execute(source);
153
- (0, runner_1.assertEqual)(output.results[0].status, 'valid');
154
- });
149
+ const interpreter = new interpreter_1.Interpreter();
150
+ const output = interpreter.execute(source);
151
+ (0, vitest_1.expect)(output.results[0].status).toBe('valid');
152
+ });
153
+ });
154
+ (0, vitest_1.describe)('Interpreter — errores', () => {
155
+ (0, vitest_1.it)('error sin perfil logico', () => {
156
+ const source = `axiom a1 = P`;
157
+ const interpreter = new interpreter_1.Interpreter();
158
+ const output = interpreter.execute(source);
159
+ (0, vitest_1.expect)(output.exitCode).not.toBe(0);
155
160
  });
156
- (0, runner_1.describe)('Interpreter — errores', () => {
157
- (0, runner_1.it)('error sin perfil logico', () => {
158
- const source = `axiom a1 = P`;
159
- const interpreter = new interpreter_1.Interpreter();
160
- const output = interpreter.execute(source);
161
- (0, runner_1.assert)(output.exitCode !== 0, 'Deberia fallar sin perfil');
162
- });
163
- (0, runner_1.it)('perfil inexistente', () => {
164
- const source = `logic inexistente.perfil`;
165
- const interpreter = new interpreter_1.Interpreter();
166
- const output = interpreter.execute(source);
167
- (0, runner_1.assert)(output.exitCode !== 0, 'Deberia fallar con perfil desconocido');
168
- });
161
+ (0, vitest_1.it)('perfil inexistente', () => {
162
+ const source = `logic inexistente.perfil`;
163
+ const interpreter = new interpreter_1.Interpreter();
164
+ const output = interpreter.execute(source);
165
+ (0, vitest_1.expect)(output.exitCode).not.toBe(0);
169
166
  });
170
- (0, runner_1.describe)('Interpreter — prove', () => {
171
- (0, runner_1.it)('prueba desde teoria', () => {
172
- const source = `
167
+ });
168
+ (0, vitest_1.describe)('Interpreter prove', () => {
169
+ (0, vitest_1.it)('prueba desde teoria', () => {
170
+ const source = `
173
171
  logic classical.propositional
174
172
  axiom a1 = P -> Q
175
173
  axiom a2 = P
176
174
  prove Q from {a1, a2}
177
175
  `;
178
- const interpreter = new interpreter_1.Interpreter();
179
- const output = interpreter.execute(source);
180
- (0, runner_1.assertEqual)(output.results[0].status, 'provable');
181
- });
176
+ const interpreter = new interpreter_1.Interpreter();
177
+ const output = interpreter.execute(source);
178
+ (0, vitest_1.expect)(output.results[0].status).toBe('provable');
182
179
  });
183
- }
180
+ });
184
181
  //# sourceMappingURL=cli.test.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"cli.test.js","sourceRoot":"","sources":["../../src/tests/cli.test.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"cli.test.js","sourceRoot":"","sources":["../../src/tests/cli.test.ts"],"names":[],"mappings":";AAAA,+DAA+D;AAC/D,iEAAiE;AACjE,+DAA+D;;AAE/D,mCAA8C;AAC9C,wDAAqD;AAErD,IAAA,iBAAQ,EAAC,sDAAsD,EAAE,GAAG,EAAE;IACpE,IAAA,WAAE,EAAC,uDAAuD,EAAE,GAAG,EAAE;QAC/D,MAAM,MAAM,GAAG;;;;;;;;CAQlB,CAAC;QACE,MAAM,WAAW,GAAG,IAAI,yBAAW,EAAE,CAAC;QACtC,MAAM,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC;QACtD,IAAA,eAAM,EAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAChC,IAAA,eAAM,EAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,wCAAwC,CAAC,CAAC;QAC1E,IAAA,eAAM,EAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC;QAE5C,gEAAgE;QAChE,MAAM,WAAW,GAAG,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,KAAK,OAAO,CAAC,CAAC;QACrE,IAAA,eAAM,EAAC,WAAW,CAAC,CAAC,WAAW,EAAE,CAAC;IACpC,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH,IAAA,iBAAQ,EAAC,4BAA4B,EAAE,GAAG,EAAE;IAC1C,IAAA,WAAE,EAAC,qBAAqB,EAAE,GAAG,EAAE;QAC7B,MAAM,MAAM,GAAG;;;;;CAKlB,CAAC;QACE,MAAM,WAAW,GAAG,IAAI,yBAAW,EAAE,CAAC;QACtC,MAAM,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;QAC3C,IAAA,eAAM,EAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAChC,MAAM,YAAY,GAAG,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;QACvC,IAAA,eAAM,EAAC,YAAY,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;IAC/C,CAAC,CAAC,CAAC;IAEH,IAAA,WAAE,EAAC,sBAAsB,EAAE,GAAG,EAAE;QAC9B,MAAM,MAAM,GAAG;;;;CAIlB,CAAC;QACE,MAAM,WAAW,GAAG,IAAI,yBAAW,EAAE,CAAC;QACtC,MAAM,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;QAC3C,MAAM,YAAY,GAAG,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;QACvC,IAAA,eAAM,EAAC,YAAY,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;IAChD,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH,IAAA,iBAAQ,EAAC,2BAA2B,EAAE,GAAG,EAAE;IACzC,IAAA,WAAE,EAAC,sBAAsB,EAAE,GAAG,EAAE;QAC9B,MAAM,MAAM,GAAG;;;CAGlB,CAAC;QACE,MAAM,WAAW,GAAG,IAAI,yBAAW,EAAE,CAAC;QACtC,MAAM,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;QAC3C,IAAA,eAAM,EAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IACjD,CAAC,CAAC,CAAC;IAEH,IAAA,WAAE,EAAC,uBAAuB,EAAE,GAAG,EAAE;QAC/B,MAAM,MAAM,GAAG;;;CAGlB,CAAC;QACE,MAAM,WAAW,GAAG,IAAI,yBAAW,EAAE,CAAC;QACtC,MAAM,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;QAC3C,IAAA,eAAM,EAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;IACnD,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH,IAAA,iBAAQ,EAAC,iCAAiC,EAAE,GAAG,EAAE;IAC/C,IAAA,WAAE,EAAC,cAAc,EAAE,GAAG,EAAE;QACtB,MAAM,MAAM,GAAG;;;CAGlB,CAAC;QACE,MAAM,WAAW,GAAG,IAAI,yBAAW,EAAE,CAAC;QACtC,MAAM,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;QAC3C,IAAA,eAAM,EAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;IACvD,CAAC,CAAC,CAAC;IAEH,IAAA,WAAE,EAAC,gCAAgC,EAAE,GAAG,EAAE;QACxC,MAAM,MAAM,GAAG;;;CAGlB,CAAC;QACE,MAAM,WAAW,GAAG,IAAI,yBAAW,EAAE,CAAC;QACtC,MAAM,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;QAC3C,IAAA,eAAM,EAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;IACzD,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH,IAAA,iBAAQ,EAAC,4BAA4B,EAAE,GAAG,EAAE;IAC1C,IAAA,WAAE,EAAC,wBAAwB,EAAE,GAAG,EAAE;QAChC,MAAM,MAAM,GAAG;;;CAGlB,CAAC;QACE,MAAM,WAAW,GAAG,IAAI,yBAAW,EAAE,CAAC;QACtC,MAAM,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;QAC3C,IAAA,eAAM,EAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QACjD,IAAA,eAAM,EAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,WAAW,EAAE,CAAC;IAChD,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH,IAAA,iBAAQ,EAAC,2BAA2B,EAAE,GAAG,EAAE;IACzC,IAAA,WAAE,EAAC,wBAAwB,EAAE,GAAG,EAAE;QAChC,MAAM,MAAM,GAAG;;;CAGlB,CAAC;QACE,MAAM,WAAW,GAAG,IAAI,yBAAW,EAAE,CAAC;QACtC,MAAM,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;QAC3C,IAAA,eAAM,EAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC;QACrC,IAAA,eAAM,EAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC;QACrC,IAAA,eAAM,EAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC;QACrC,IAAA,eAAM,EAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC;IACvC,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH,IAAA,iBAAQ,EAAC,mCAAmC,EAAE,GAAG,EAAE;IACjD,IAAA,WAAE,EAAC,mDAAmD,EAAE,GAAG,EAAE;QAC3D,MAAM,MAAM,GAAG;;;;;;;;;CASlB,CAAC;QACE,MAAM,WAAW,GAAG,IAAI,yBAAW,EAAE,CAAC;QACtC,MAAM,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;QAC3C,IAAA,eAAM,EAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAChC,IAAA,eAAM,EAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,WAAW,CAAC,CAAC;QAC7C,IAAA,eAAM,EAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,mBAAmB,CAAC,CAAC;QACrD,IAAA,eAAM,EAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC;QAC5C,IAAA,eAAM,EAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC;QAC3C,IAAA,eAAM,EAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,YAAY,CAAC,CAAC;IAChD,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH,IAAA,iBAAQ,EAAC,gCAAgC,EAAE,GAAG,EAAE;IAC9C,IAAA,WAAE,EAAC,sBAAsB,EAAE,GAAG,EAAE;QAC9B,MAAM,MAAM,GAAG;;;CAGlB,CAAC;QACE,MAAM,WAAW,GAAG,IAAI,yBAAW,EAAE,CAAC;QACtC,MAAM,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;QAC3C,IAAA,eAAM,EAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IACjD,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH,IAAA,iBAAQ,EAAC,uBAAuB,EAAE,GAAG,EAAE;IACrC,IAAA,WAAE,EAAC,yBAAyB,EAAE,GAAG,EAAE;QACjC,MAAM,MAAM,GAAG,cAAc,CAAC;QAC9B,MAAM,WAAW,GAAG,IAAI,yBAAW,EAAE,CAAC;QACtC,MAAM,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;QAC3C,IAAA,eAAM,EAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IACtC,CAAC,CAAC,CAAC;IAEH,IAAA,WAAE,EAAC,oBAAoB,EAAE,GAAG,EAAE;QAC5B,MAAM,MAAM,GAAG,0BAA0B,CAAC;QAC1C,MAAM,WAAW,GAAG,IAAI,yBAAW,EAAE,CAAC;QACtC,MAAM,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;QAC3C,IAAA,eAAM,EAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IACtC,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH,IAAA,iBAAQ,EAAC,qBAAqB,EAAE,GAAG,EAAE;IACnC,IAAA,WAAE,EAAC,qBAAqB,EAAE,GAAG,EAAE;QAC7B,MAAM,MAAM,GAAG;;;;;CAKlB,CAAC;QACE,MAAM,WAAW,GAAG,IAAI,yBAAW,EAAE,CAAC;QACtC,MAAM,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;QAC3C,IAAA,eAAM,EAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;IACpD,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
@@ -1,2 +1,2 @@
1
- export declare function runCoreTests(): void;
1
+ export {};
2
2
  //# sourceMappingURL=core.test.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"core.test.d.ts","sourceRoot":"","sources":["../../src/tests/core.test.ts"],"names":[],"mappings":"AAuCA,wBAAgB,YAAY,IAAI,IAAI,CAoNnC"}
1
+ {"version":3,"file":"core.test.d.ts","sourceRoot":"","sources":["../../src/tests/core.test.ts"],"names":[],"mappings":""}