@shapeshift-labs/frontier-lang-compiler 0.2.63 → 0.2.65
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
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
Compiler facade for Frontier Lang. It composes the parser, checker, semantic kernel, and projection adapters for TypeScript, JavaScript, Rust, Python, and C.
|
|
4
4
|
|
|
5
|
+
## Benchmarks
|
|
6
|
+
|
|
7
|
+
Run the package-local benchmark with:
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npm run bench
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
These are Frontier-only package measurements for @shapeshift-labs/frontier-lang-compiler. They exercise the package's own parser, checker, compiler, projection, CLI, fuzz, or semantic-kernel surface without making competitor comparison claims.
|
|
14
|
+
|
|
5
15
|
## Vision
|
|
6
16
|
|
|
7
17
|
Frontier Lang and Frontier Swarm are two parts of the same system: a semantic programming substrate for agent teams.
|
|
@@ -847,13 +857,3 @@ Package source repositories:
|
|
|
847
857
|
- [`siliconjungle/-shapeshift-labs-frontier-realtime-server`](https://github.com/siliconjungle/-shapeshift-labs-frontier-realtime-server)
|
|
848
858
|
- [`siliconjungle/-shapeshift-labs-frontier-realtime-websocket`](https://github.com/siliconjungle/-shapeshift-labs-frontier-realtime-websocket)
|
|
849
859
|
- [`siliconjungle/-shapeshift-labs-frontier-game`](https://github.com/siliconjungle/-shapeshift-labs-frontier-game)
|
|
850
|
-
|
|
851
|
-
## Benchmarks
|
|
852
|
-
|
|
853
|
-
Run the package-local benchmark with:
|
|
854
|
-
|
|
855
|
-
```sh
|
|
856
|
-
npm run bench
|
|
857
|
-
```
|
|
858
|
-
|
|
859
|
-
These are Frontier-only package measurements for @shapeshift-labs/frontier-lang-compiler. They exercise the package's own parser, checker, compiler, projection, CLI, fuzz, or semantic-kernel surface without making competitor comparison claims.
|
|
@@ -71,7 +71,7 @@ export async function runNativeImporterAdapter(adapter, input = {}) {
|
|
|
71
71
|
sourcePath: parseResult.sourcePath ?? input.sourcePath,
|
|
72
72
|
sourceHash: parseResult.sourceHash ?? sourceHash
|
|
73
73
|
});
|
|
74
|
-
const evidence = [...(parseResult.evidence ?? []), sourceEvidence];
|
|
74
|
+
const evidence = [...(input.evidence ?? []), ...(parseResult.evidence ?? []), sourceEvidence];
|
|
75
75
|
const importInput = {
|
|
76
76
|
...input,
|
|
77
77
|
...parseResult,
|
|
@@ -24,12 +24,12 @@ const packageRows = [
|
|
|
24
24
|
row('@shapeshift-labs/frontier-lang-rust', '0.2.8', 'rust', 'rust-syn', { target: 'rust', proofKeys: ['parserAst', 'sourceMap', 'semanticSidecar', 'macroExpansionEvidence'] }),
|
|
25
25
|
row('@shapeshift-labs/frontier-lang-python', '0.2.8', 'python', 'python-ast', { target: 'python', formats: ['python-ast', 'libcst'] }),
|
|
26
26
|
row('@shapeshift-labs/frontier-lang-c', '0.2.8', 'c', 'clang-ast-json', { target: 'c', proofKeys: ['parserAst', 'sourceMap', 'semanticSidecar', 'compileCommandsHash', 'preprocessorRecordsHash'] }),
|
|
27
|
-
platform('@shapeshift-labs/frontier-lang-java', '0.1.
|
|
28
|
-
platform('@shapeshift-labs/frontier-lang-kotlin', '0.1.
|
|
29
|
-
platform('@shapeshift-labs/frontier-lang-swift', '0.1.
|
|
30
|
-
platform('@shapeshift-labs/frontier-lang-csharp', '0.1.
|
|
31
|
-
platform('@shapeshift-labs/frontier-lang-go', '0.1.
|
|
32
|
-
platform('@shapeshift-labs/frontier-lang-clang', '0.1.
|
|
27
|
+
platform('@shapeshift-labs/frontier-lang-java', '0.1.8', 'java', 'java-ast', ['semanticdb', 'lsp']),
|
|
28
|
+
platform('@shapeshift-labs/frontier-lang-kotlin', '0.1.8', 'kotlin', 'kotlin-psi', ['semanticdb', 'lsp']),
|
|
29
|
+
platform('@shapeshift-labs/frontier-lang-swift', '0.1.8', 'swift', 'swift-syntax', ['sourcekit-lsp', 'lsp']),
|
|
30
|
+
platform('@shapeshift-labs/frontier-lang-csharp', '0.1.8', 'csharp', 'roslyn-csharp', ['lsp']),
|
|
31
|
+
platform('@shapeshift-labs/frontier-lang-go', '0.1.8', 'go', 'go-ast', ['lsp']),
|
|
32
|
+
platform('@shapeshift-labs/frontier-lang-clang', '0.1.8', 'c', 'clang-ast-json', ['lsp'], {
|
|
33
33
|
supportedLanguages: ['c', 'cpp'],
|
|
34
34
|
proofKeys: ['parserAst', 'semanticIndex', 'compileCommandsHash', 'preprocessorRecordsHash']
|
|
35
35
|
})
|
package/package.json
CHANGED