@lokascript/compilation-service 2.0.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.
- package/dist/chunk-CY26COTT.js +77 -0
- package/dist/chunk-CY26COTT.js.map +1 -0
- package/dist/chunk-HMLY7DHA.js +16 -0
- package/dist/chunk-HMLY7DHA.js.map +1 -0
- package/dist/chunk-JDOSUTCM.js +49 -0
- package/dist/chunk-JDOSUTCM.js.map +1 -0
- package/dist/chunk-ODJIDVMN.js +3322 -0
- package/dist/chunk-ODJIDVMN.js.map +1 -0
- package/dist/core-parser-adapter-VCJB52SO-MDHRIVZ7.js +12 -0
- package/dist/core-parser-adapter-VCJB52SO-MDHRIVZ7.js.map +1 -0
- package/dist/dist-ICUX26U7.js +3790 -0
- package/dist/dist-ICUX26U7.js.map +1 -0
- package/dist/dist-JOIDNRL3.js +65969 -0
- package/dist/dist-JOIDNRL3.js.map +1 -0
- package/dist/http.cjs +73093 -0
- package/dist/http.cjs.map +1 -0
- package/dist/http.d.cts +46 -0
- package/dist/http.d.ts +46 -0
- package/dist/http.js +202 -0
- package/dist/http.js.map +1 -0
- package/dist/index.cjs +72924 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +168 -0
- package/dist/index.d.ts +168 -0
- package/dist/index.js +32 -0
- package/dist/index.js.map +1 -0
- package/dist/semantic-adapter-7HTMTO75-MFFBR7K3.js +12 -0
- package/dist/semantic-adapter-7HTMTO75-MFFBR7K3.js.map +1 -0
- package/dist/service-891L1MYk.d.cts +595 -0
- package/dist/service-891L1MYk.d.ts +595 -0
- package/package.json +73 -0
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
import { I as InputFormat, S as SemanticJSON, D as Diagnostic, a as CompileResponse, B as BehaviorSpec, T as TriggerDiff, O as OperationDiff, A as AbstractOperation, b as TestRenderer, c as TestRenderOptions, G as GeneratedTest, d as ComponentRenderer, e as ComponentRenderOptions, f as GeneratedComponent } from './service-891L1MYk.cjs';
|
|
2
|
+
export { w as AddClassOp, y as AppendContentOp, P as BlurOp, C as CompilationService, g as CompileRequest, m as ComponentRequest, n as ComponentResponse, J as DecrementOp, q as DiffInput, o as DiffRequest, p as DiffResponse, K as FetchOp, M as FocusOp, l as GeneratedTestOutput, H as HideOp, F as IncrementOp, Q as LogOp, N as NavigateOp, r as OperationChangeKind, R as RemoveClassOp, t as SemanticJSONValue, s as ServiceOptions, x as SetContentOp, E as SetVariableOp, z as ShowOp, u as TargetRef, j as TestRequest, k as TestResponse, v as ToggleClassOp, h as TranslateRequest, i as TranslateResponse, L as TriggerEventOp, V as ValidationResponse, W as WaitOp } from './service-891L1MYk.cjs';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Input format detection.
|
|
6
|
+
*
|
|
7
|
+
* Determines whether input is natural language, explicit syntax, or LLM JSON.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Detect the input format from a string.
|
|
12
|
+
*/
|
|
13
|
+
declare function detectFormat(input: string): InputFormat;
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* LLM JSON input validation.
|
|
17
|
+
*
|
|
18
|
+
* Validates structured semantic JSON from LLM output and converts
|
|
19
|
+
* it to a SemanticNode compatible with the semantic package.
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Validate LLM JSON input structure.
|
|
24
|
+
* Returns diagnostics (empty = valid).
|
|
25
|
+
*/
|
|
26
|
+
declare function validateSemanticJSON(input: SemanticJSON): Diagnostic[];
|
|
27
|
+
/**
|
|
28
|
+
* Convert validated SemanticJSON to a SemanticNode-compatible object.
|
|
29
|
+
*
|
|
30
|
+
* Returns a plain object matching the SemanticNode interface from
|
|
31
|
+
* @lokascript/semantic, using ReadonlyMap for roles.
|
|
32
|
+
*/
|
|
33
|
+
declare function jsonToSemanticNode(input: SemanticJSON): unknown;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Semantic-keyed LRU cache.
|
|
37
|
+
*
|
|
38
|
+
* Caches compilation results keyed by canonical semantic representation.
|
|
39
|
+
* Different input languages that produce the same semantics hit the same cache.
|
|
40
|
+
*/
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Simple LRU cache using Map insertion order.
|
|
44
|
+
*/
|
|
45
|
+
declare class SemanticCache {
|
|
46
|
+
private cache;
|
|
47
|
+
private readonly maxSize;
|
|
48
|
+
/** Cache hit/miss statistics */
|
|
49
|
+
hits: number;
|
|
50
|
+
misses: number;
|
|
51
|
+
constructor(maxSize?: number);
|
|
52
|
+
/**
|
|
53
|
+
* Get a cached response, or undefined if not cached.
|
|
54
|
+
*/
|
|
55
|
+
get(key: string): CompileResponse | undefined;
|
|
56
|
+
/**
|
|
57
|
+
* Store a response in the cache.
|
|
58
|
+
*/
|
|
59
|
+
set(key: string, value: CompileResponse): void;
|
|
60
|
+
/** Current cache size */
|
|
61
|
+
get size(): number;
|
|
62
|
+
/** Clear all entries */
|
|
63
|
+
clear(): void;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Generate a canonical cache key from a semantic node and compilation options.
|
|
67
|
+
*
|
|
68
|
+
* The key is based on semantic identity, not syntax — so the same behavior
|
|
69
|
+
* described in English, Japanese, or explicit syntax produces the same key.
|
|
70
|
+
*/
|
|
71
|
+
declare function generateCacheKey(node: unknown, options: {
|
|
72
|
+
optimization?: number;
|
|
73
|
+
target?: string;
|
|
74
|
+
minify?: boolean;
|
|
75
|
+
}): string;
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Operation Extraction
|
|
79
|
+
*
|
|
80
|
+
* Converts a SemanticNode (from the parsing pipeline) into a BehaviorSpec
|
|
81
|
+
* containing abstract operations. This is the bridge between semantic roles
|
|
82
|
+
* and framework-agnostic behavior descriptions.
|
|
83
|
+
*/
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Extract abstract operations from a semantic node.
|
|
87
|
+
*
|
|
88
|
+
* Handles event handlers (extracts trigger + recurses into body)
|
|
89
|
+
* and standalone commands.
|
|
90
|
+
*/
|
|
91
|
+
declare function extractOperations(node: unknown): BehaviorSpec;
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* Semantic Diff Engine
|
|
95
|
+
*
|
|
96
|
+
* Compares two BehaviorSpecs at the abstract operation level.
|
|
97
|
+
* Uses LCS (longest common subsequence) for operation-level diffing
|
|
98
|
+
* and post-processes to detect reorderings.
|
|
99
|
+
*/
|
|
100
|
+
|
|
101
|
+
interface DiffResult {
|
|
102
|
+
identical: boolean;
|
|
103
|
+
trigger: TriggerDiff | null;
|
|
104
|
+
operations: OperationDiff[];
|
|
105
|
+
summary: string;
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* Compare two BehaviorSpecs and produce a structured diff.
|
|
109
|
+
*/
|
|
110
|
+
declare function diffBehaviors(a: BehaviorSpec, b: BehaviorSpec): DiffResult;
|
|
111
|
+
/**
|
|
112
|
+
* Produce a deterministic string key for an AbstractOperation.
|
|
113
|
+
* Two operations with the same key are semantically identical.
|
|
114
|
+
*/
|
|
115
|
+
declare function canonicalizeOp(op: AbstractOperation): string;
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Playwright Test Renderer
|
|
119
|
+
*
|
|
120
|
+
* Generates complete Playwright test files from BehaviorSpecs.
|
|
121
|
+
* Each generated test creates an HTML fixture, triggers the behavior,
|
|
122
|
+
* and asserts the expected DOM changes.
|
|
123
|
+
*/
|
|
124
|
+
|
|
125
|
+
declare class PlaywrightRenderer implements TestRenderer {
|
|
126
|
+
readonly framework = "playwright";
|
|
127
|
+
render(spec: BehaviorSpec, options?: TestRenderOptions): GeneratedTest;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* React Component Renderer
|
|
132
|
+
*
|
|
133
|
+
* Generates complete React functional components from BehaviorSpecs.
|
|
134
|
+
* Maps abstract operations to React hooks (useState, useRef, useCallback) and JSX.
|
|
135
|
+
*/
|
|
136
|
+
|
|
137
|
+
declare class ReactRenderer implements ComponentRenderer {
|
|
138
|
+
readonly framework = "react";
|
|
139
|
+
render(spec: BehaviorSpec, options?: ComponentRenderOptions): GeneratedComponent;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* Vue 3 Component Renderer
|
|
144
|
+
*
|
|
145
|
+
* Generates Vue 3 Single File Components (SFC) with Composition API
|
|
146
|
+
* (<script setup>) from BehaviorSpecs.
|
|
147
|
+
* Maps abstract operations to Vue refs and template directives.
|
|
148
|
+
*/
|
|
149
|
+
|
|
150
|
+
declare class VueRenderer implements ComponentRenderer {
|
|
151
|
+
readonly framework = "vue";
|
|
152
|
+
render(spec: BehaviorSpec, options?: ComponentRenderOptions): GeneratedComponent;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* Svelte 5 Component Renderer
|
|
157
|
+
*
|
|
158
|
+
* Generates Svelte 5 components with runes ($state, $derived, $effect)
|
|
159
|
+
* from BehaviorSpecs.
|
|
160
|
+
* Maps abstract operations to direct state mutation and Svelte template syntax.
|
|
161
|
+
*/
|
|
162
|
+
|
|
163
|
+
declare class SvelteRenderer implements ComponentRenderer {
|
|
164
|
+
readonly framework = "svelte";
|
|
165
|
+
render(spec: BehaviorSpec, options?: ComponentRenderOptions): GeneratedComponent;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
export { AbstractOperation, BehaviorSpec, CompileResponse, ComponentRenderOptions, ComponentRenderer, Diagnostic, GeneratedComponent, GeneratedTest, InputFormat, OperationDiff, PlaywrightRenderer, ReactRenderer, SemanticCache, SemanticJSON, SvelteRenderer, TestRenderOptions, TestRenderer, TriggerDiff, VueRenderer, canonicalizeOp, detectFormat, diffBehaviors, extractOperations, generateCacheKey, jsonToSemanticNode, validateSemanticJSON };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
import { I as InputFormat, S as SemanticJSON, D as Diagnostic, a as CompileResponse, B as BehaviorSpec, T as TriggerDiff, O as OperationDiff, A as AbstractOperation, b as TestRenderer, c as TestRenderOptions, G as GeneratedTest, d as ComponentRenderer, e as ComponentRenderOptions, f as GeneratedComponent } from './service-891L1MYk.js';
|
|
2
|
+
export { w as AddClassOp, y as AppendContentOp, P as BlurOp, C as CompilationService, g as CompileRequest, m as ComponentRequest, n as ComponentResponse, J as DecrementOp, q as DiffInput, o as DiffRequest, p as DiffResponse, K as FetchOp, M as FocusOp, l as GeneratedTestOutput, H as HideOp, F as IncrementOp, Q as LogOp, N as NavigateOp, r as OperationChangeKind, R as RemoveClassOp, t as SemanticJSONValue, s as ServiceOptions, x as SetContentOp, E as SetVariableOp, z as ShowOp, u as TargetRef, j as TestRequest, k as TestResponse, v as ToggleClassOp, h as TranslateRequest, i as TranslateResponse, L as TriggerEventOp, V as ValidationResponse, W as WaitOp } from './service-891L1MYk.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Input format detection.
|
|
6
|
+
*
|
|
7
|
+
* Determines whether input is natural language, explicit syntax, or LLM JSON.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Detect the input format from a string.
|
|
12
|
+
*/
|
|
13
|
+
declare function detectFormat(input: string): InputFormat;
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* LLM JSON input validation.
|
|
17
|
+
*
|
|
18
|
+
* Validates structured semantic JSON from LLM output and converts
|
|
19
|
+
* it to a SemanticNode compatible with the semantic package.
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Validate LLM JSON input structure.
|
|
24
|
+
* Returns diagnostics (empty = valid).
|
|
25
|
+
*/
|
|
26
|
+
declare function validateSemanticJSON(input: SemanticJSON): Diagnostic[];
|
|
27
|
+
/**
|
|
28
|
+
* Convert validated SemanticJSON to a SemanticNode-compatible object.
|
|
29
|
+
*
|
|
30
|
+
* Returns a plain object matching the SemanticNode interface from
|
|
31
|
+
* @lokascript/semantic, using ReadonlyMap for roles.
|
|
32
|
+
*/
|
|
33
|
+
declare function jsonToSemanticNode(input: SemanticJSON): unknown;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Semantic-keyed LRU cache.
|
|
37
|
+
*
|
|
38
|
+
* Caches compilation results keyed by canonical semantic representation.
|
|
39
|
+
* Different input languages that produce the same semantics hit the same cache.
|
|
40
|
+
*/
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Simple LRU cache using Map insertion order.
|
|
44
|
+
*/
|
|
45
|
+
declare class SemanticCache {
|
|
46
|
+
private cache;
|
|
47
|
+
private readonly maxSize;
|
|
48
|
+
/** Cache hit/miss statistics */
|
|
49
|
+
hits: number;
|
|
50
|
+
misses: number;
|
|
51
|
+
constructor(maxSize?: number);
|
|
52
|
+
/**
|
|
53
|
+
* Get a cached response, or undefined if not cached.
|
|
54
|
+
*/
|
|
55
|
+
get(key: string): CompileResponse | undefined;
|
|
56
|
+
/**
|
|
57
|
+
* Store a response in the cache.
|
|
58
|
+
*/
|
|
59
|
+
set(key: string, value: CompileResponse): void;
|
|
60
|
+
/** Current cache size */
|
|
61
|
+
get size(): number;
|
|
62
|
+
/** Clear all entries */
|
|
63
|
+
clear(): void;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Generate a canonical cache key from a semantic node and compilation options.
|
|
67
|
+
*
|
|
68
|
+
* The key is based on semantic identity, not syntax — so the same behavior
|
|
69
|
+
* described in English, Japanese, or explicit syntax produces the same key.
|
|
70
|
+
*/
|
|
71
|
+
declare function generateCacheKey(node: unknown, options: {
|
|
72
|
+
optimization?: number;
|
|
73
|
+
target?: string;
|
|
74
|
+
minify?: boolean;
|
|
75
|
+
}): string;
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Operation Extraction
|
|
79
|
+
*
|
|
80
|
+
* Converts a SemanticNode (from the parsing pipeline) into a BehaviorSpec
|
|
81
|
+
* containing abstract operations. This is the bridge between semantic roles
|
|
82
|
+
* and framework-agnostic behavior descriptions.
|
|
83
|
+
*/
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Extract abstract operations from a semantic node.
|
|
87
|
+
*
|
|
88
|
+
* Handles event handlers (extracts trigger + recurses into body)
|
|
89
|
+
* and standalone commands.
|
|
90
|
+
*/
|
|
91
|
+
declare function extractOperations(node: unknown): BehaviorSpec;
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* Semantic Diff Engine
|
|
95
|
+
*
|
|
96
|
+
* Compares two BehaviorSpecs at the abstract operation level.
|
|
97
|
+
* Uses LCS (longest common subsequence) for operation-level diffing
|
|
98
|
+
* and post-processes to detect reorderings.
|
|
99
|
+
*/
|
|
100
|
+
|
|
101
|
+
interface DiffResult {
|
|
102
|
+
identical: boolean;
|
|
103
|
+
trigger: TriggerDiff | null;
|
|
104
|
+
operations: OperationDiff[];
|
|
105
|
+
summary: string;
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* Compare two BehaviorSpecs and produce a structured diff.
|
|
109
|
+
*/
|
|
110
|
+
declare function diffBehaviors(a: BehaviorSpec, b: BehaviorSpec): DiffResult;
|
|
111
|
+
/**
|
|
112
|
+
* Produce a deterministic string key for an AbstractOperation.
|
|
113
|
+
* Two operations with the same key are semantically identical.
|
|
114
|
+
*/
|
|
115
|
+
declare function canonicalizeOp(op: AbstractOperation): string;
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Playwright Test Renderer
|
|
119
|
+
*
|
|
120
|
+
* Generates complete Playwright test files from BehaviorSpecs.
|
|
121
|
+
* Each generated test creates an HTML fixture, triggers the behavior,
|
|
122
|
+
* and asserts the expected DOM changes.
|
|
123
|
+
*/
|
|
124
|
+
|
|
125
|
+
declare class PlaywrightRenderer implements TestRenderer {
|
|
126
|
+
readonly framework = "playwright";
|
|
127
|
+
render(spec: BehaviorSpec, options?: TestRenderOptions): GeneratedTest;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* React Component Renderer
|
|
132
|
+
*
|
|
133
|
+
* Generates complete React functional components from BehaviorSpecs.
|
|
134
|
+
* Maps abstract operations to React hooks (useState, useRef, useCallback) and JSX.
|
|
135
|
+
*/
|
|
136
|
+
|
|
137
|
+
declare class ReactRenderer implements ComponentRenderer {
|
|
138
|
+
readonly framework = "react";
|
|
139
|
+
render(spec: BehaviorSpec, options?: ComponentRenderOptions): GeneratedComponent;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* Vue 3 Component Renderer
|
|
144
|
+
*
|
|
145
|
+
* Generates Vue 3 Single File Components (SFC) with Composition API
|
|
146
|
+
* (<script setup>) from BehaviorSpecs.
|
|
147
|
+
* Maps abstract operations to Vue refs and template directives.
|
|
148
|
+
*/
|
|
149
|
+
|
|
150
|
+
declare class VueRenderer implements ComponentRenderer {
|
|
151
|
+
readonly framework = "vue";
|
|
152
|
+
render(spec: BehaviorSpec, options?: ComponentRenderOptions): GeneratedComponent;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* Svelte 5 Component Renderer
|
|
157
|
+
*
|
|
158
|
+
* Generates Svelte 5 components with runes ($state, $derived, $effect)
|
|
159
|
+
* from BehaviorSpecs.
|
|
160
|
+
* Maps abstract operations to direct state mutation and Svelte template syntax.
|
|
161
|
+
*/
|
|
162
|
+
|
|
163
|
+
declare class SvelteRenderer implements ComponentRenderer {
|
|
164
|
+
readonly framework = "svelte";
|
|
165
|
+
render(spec: BehaviorSpec, options?: ComponentRenderOptions): GeneratedComponent;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
export { AbstractOperation, BehaviorSpec, CompileResponse, ComponentRenderOptions, ComponentRenderer, Diagnostic, GeneratedComponent, GeneratedTest, InputFormat, OperationDiff, PlaywrightRenderer, ReactRenderer, SemanticCache, SemanticJSON, SvelteRenderer, TestRenderOptions, TestRenderer, TriggerDiff, VueRenderer, canonicalizeOp, detectFormat, diffBehaviors, extractOperations, generateCacheKey, jsonToSemanticNode, validateSemanticJSON };
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
CompilationService,
|
|
3
|
+
PlaywrightRenderer,
|
|
4
|
+
ReactRenderer,
|
|
5
|
+
SemanticCache,
|
|
6
|
+
SvelteRenderer,
|
|
7
|
+
VueRenderer,
|
|
8
|
+
canonicalizeOp,
|
|
9
|
+
detectFormat,
|
|
10
|
+
diffBehaviors,
|
|
11
|
+
extractOperations,
|
|
12
|
+
generateCacheKey,
|
|
13
|
+
jsonToSemanticNode,
|
|
14
|
+
validateSemanticJSON
|
|
15
|
+
} from "./chunk-ODJIDVMN.js";
|
|
16
|
+
import "./chunk-HMLY7DHA.js";
|
|
17
|
+
export {
|
|
18
|
+
CompilationService,
|
|
19
|
+
PlaywrightRenderer,
|
|
20
|
+
ReactRenderer,
|
|
21
|
+
SemanticCache,
|
|
22
|
+
SvelteRenderer,
|
|
23
|
+
VueRenderer,
|
|
24
|
+
canonicalizeOp,
|
|
25
|
+
detectFormat,
|
|
26
|
+
diffBehaviors,
|
|
27
|
+
extractOperations,
|
|
28
|
+
generateCacheKey,
|
|
29
|
+
jsonToSemanticNode,
|
|
30
|
+
validateSemanticJSON
|
|
31
|
+
};
|
|
32
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import {
|
|
2
|
+
SemanticParserAdapter,
|
|
3
|
+
convertSemanticASTToAOT,
|
|
4
|
+
createSemanticAdapter
|
|
5
|
+
} from "./chunk-CY26COTT.js";
|
|
6
|
+
import "./chunk-HMLY7DHA.js";
|
|
7
|
+
export {
|
|
8
|
+
SemanticParserAdapter,
|
|
9
|
+
convertSemanticASTToAOT,
|
|
10
|
+
createSemanticAdapter
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=semantic-adapter-7HTMTO75-MFFBR7K3.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|