solve-engine 1.0.0-beta.4 → 1.0.0-beta.6
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/dist/{chunk-EAAHVJ4P.cjs → chunk-62W2DYYA.cjs} +3 -3
- package/dist/{chunk-EAAHVJ4P.cjs.map → chunk-62W2DYYA.cjs.map} +1 -1
- package/dist/{chunk-3MNKQZ77.js → chunk-BAMZT3GL.js} +3 -3
- package/dist/{chunk-3MNKQZ77.js.map → chunk-BAMZT3GL.js.map} +1 -1
- package/dist/{chunk-2NPS5DQ3.cjs → chunk-BXKJLM5R.cjs} +13 -5
- package/dist/chunk-BXKJLM5R.cjs.map +1 -0
- package/dist/{chunk-43G3JT2E.cjs → chunk-CSG5XVNJ.cjs} +35 -35
- package/dist/chunk-CSG5XVNJ.cjs.map +1 -0
- package/dist/{chunk-X2BWAZAU.cjs → chunk-FN2WMF2W.cjs} +28 -27
- package/dist/chunk-FN2WMF2W.cjs.map +1 -0
- package/dist/{chunk-FIFQPKBA.js → chunk-GVWHCL2N.js} +3 -3
- package/dist/chunk-GVWHCL2N.js.map +1 -0
- package/dist/{chunk-OWRHDUJD.js → chunk-LVLUHTRD.js} +3 -3
- package/dist/{chunk-OWRHDUJD.js.map → chunk-LVLUHTRD.js.map} +1 -1
- package/dist/{chunk-KHJUSHFU.js → chunk-MVBEL57Q.js} +13 -5
- package/dist/chunk-MVBEL57Q.js.map +1 -0
- package/dist/{chunk-DDQVZGLO.js → chunk-NUR3K7EW.js} +7 -6
- package/dist/chunk-NUR3K7EW.js.map +1 -0
- package/dist/{chunk-M4Q47KHF.cjs → chunk-QDMPOAI7.cjs} +22 -22
- package/dist/{chunk-M4Q47KHF.cjs.map → chunk-QDMPOAI7.cjs.map} +1 -1
- package/dist/constants.cjs +4 -4
- package/dist/constants.js +1 -1
- package/dist/engine.cjs +15 -15
- package/dist/engine.js +5 -5
- package/dist/index.cjs +11 -11
- package/dist/index.js +6 -6
- package/dist/packages.cjs +25 -25
- package/dist/packages.d.cts +42 -0
- package/dist/packages.d.ts +42 -0
- package/dist/packages.js +2 -2
- package/dist/vm.cjs +13 -13
- package/dist/vm.js +2 -2
- package/package.json +1 -1
- package/dist/chunk-2NPS5DQ3.cjs.map +0 -1
- package/dist/chunk-43G3JT2E.cjs.map +0 -1
- package/dist/chunk-DDQVZGLO.js.map +0 -1
- package/dist/chunk-FIFQPKBA.js.map +0 -1
- package/dist/chunk-KHJUSHFU.js.map +0 -1
- package/dist/chunk-X2BWAZAU.cjs.map +0 -1
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { ParseletRegistry, PrecedenceParser } from './chunk-MEOHSQEH.js';
|
|
2
2
|
import { ResolverRegistry } from './chunk-3VGDNEE3.js';
|
|
3
3
|
import { abortLogger, djb2Hash } from './chunk-IF532O7C.js';
|
|
4
|
-
import { executeBytecode, createVM, DependencyGraph, ScopeManager } from './chunk-
|
|
4
|
+
import { executeBytecode, createVM, DependencyGraph, ScopeManager } from './chunk-BAMZT3GL.js';
|
|
5
5
|
import { DiagnosticPipeline, TimelineDiagnosticCollector, DiagnosticEventType } from './chunk-G535KJEG.js';
|
|
6
|
-
import { BUILTIN_PACKAGES, containsSymbolicCall } from './chunk-
|
|
6
|
+
import { BUILTIN_PACKAGES, containsSymbolicCall } from './chunk-GVWHCL2N.js';
|
|
7
7
|
import { BytecodeBuilder } from './chunk-6GCKCWLB.js';
|
|
8
8
|
import { TokenNormalizer, BUILTIN_PHRASES, implicitMultiplyRule } from './chunk-OFXOTECC.js';
|
|
9
9
|
import { createQueryClient, setActiveQueryClient, getActiveQueryClient } from './chunk-NLNDMWZC.js';
|
|
10
|
-
import { sharedOpRegistry, createEngineContext, registerAsConverter, unregisterAsConverter, solveEquationValues, globalDagKey, sharedGlobalVariableStore } from './chunk-
|
|
10
|
+
import { sharedOpRegistry, createEngineContext, registerAsConverter, unregisterAsConverter, solveEquationValues, globalDagKey, sharedGlobalVariableStore } from './chunk-MVBEL57Q.js';
|
|
11
11
|
import { matrixMultiply, inverse } from './chunk-CYFK5SY2.js';
|
|
12
12
|
import { pendingValue, errorValue, stringValue, numberValue, freezeIfDev, boolValue, uomValue, percentageValue, datetimeValue, bigIntValue, hexValue, enableValueArena, disableValueArena } from './chunk-BVAR5J2F.js';
|
|
13
|
-
import { mergeEngineConfig, DEFAULT_CONFIG, ENGINE_VERSION } from './chunk-
|
|
13
|
+
import { mergeEngineConfig, DEFAULT_CONFIG, ENGINE_VERSION } from './chunk-LVLUHTRD.js';
|
|
14
14
|
import { Lexer, buildTokenLookup, sharedLexer } from './chunk-2CS6OMZK.js';
|
|
15
15
|
import { registerTokenCategory, unregisterTokenCategory } from './chunk-AJA6LUI7.js';
|
|
16
16
|
import { normalizeUnknownError, ErrorFactory, EngineError } from './chunk-6RDSQURE.js';
|
|
@@ -2371,6 +2371,7 @@ function handleExecuteBatch(msg) {
|
|
|
2371
2371
|
}
|
|
2372
2372
|
var inWorkerScope = typeof self !== "undefined" && typeof window === "undefined";
|
|
2373
2373
|
var handleMessage = (event) => {
|
|
2374
|
+
if (event.origin && self.location && event.origin !== self.location.origin) return;
|
|
2374
2375
|
const msg = event.data;
|
|
2375
2376
|
switch (msg.type) {
|
|
2376
2377
|
case "COMPILE_BATCH":
|
|
@@ -7468,5 +7469,5 @@ var ThreeTierEvaluator = class {
|
|
|
7468
7469
|
};
|
|
7469
7470
|
|
|
7470
7471
|
export { AsyncResolutionBatcher, DocumentModel, EvalTier, ExpressionEngine, ThreeTierEvaluator, assertEngineVersionCompatible, checkEngineVersionCompatibility, checkExpressionComplexity, checkExpressionLength, checkPackageCompatibility, extractReadsAndWrites, findInlineSolvesInLine, isEmptyLine };
|
|
7471
|
-
//# sourceMappingURL=chunk-
|
|
7472
|
-
//# sourceMappingURL=chunk-
|
|
7472
|
+
//# sourceMappingURL=chunk-NUR3K7EW.js.map
|
|
7473
|
+
//# sourceMappingURL=chunk-NUR3K7EW.js.map
|