@shapeshift-labs/frontier-lang 0.4.40 → 0.4.41
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/index.d.ts +82 -4
- package/dist/index.js +34 -4
- package/package.json +8 -8
package/dist/index.d.ts
CHANGED
|
@@ -2,10 +2,6 @@ export * from "@shapeshift-labs/frontier-lang-kernel";
|
|
|
2
2
|
export * from "@shapeshift-labs/frontier-lang-parser";
|
|
3
3
|
export * from "@shapeshift-labs/frontier-lang-checker";
|
|
4
4
|
export * from "@shapeshift-labs/frontier-lang-typescript";
|
|
5
|
-
export * from "@shapeshift-labs/frontier-lang-javascript";
|
|
6
|
-
export * from "@shapeshift-labs/frontier-lang-rust";
|
|
7
|
-
export * from "@shapeshift-labs/frontier-lang-python";
|
|
8
|
-
export * from "@shapeshift-labs/frontier-lang-c";
|
|
9
5
|
export * from "@shapeshift-labs/frontier-lang-compiler";
|
|
10
6
|
export * from "@shapeshift-labs/frontier-lang-swift";
|
|
11
7
|
export * from "@shapeshift-labs/frontier-lang-kotlin";
|
|
@@ -13,3 +9,85 @@ export * from "@shapeshift-labs/frontier-lang-java";
|
|
|
13
9
|
export * from "@shapeshift-labs/frontier-lang-go";
|
|
14
10
|
export * from "@shapeshift-labs/frontier-lang-csharp";
|
|
15
11
|
export * from "@shapeshift-labs/frontier-lang-clang";
|
|
12
|
+
|
|
13
|
+
export {
|
|
14
|
+
type EmitJavaScriptOptions,
|
|
15
|
+
type JavaScriptSourceMapResult,
|
|
16
|
+
type EmitJavaScriptWithSourceMapResult,
|
|
17
|
+
type JavaScriptSourceRef,
|
|
18
|
+
type JavaScriptAstDeclaration,
|
|
19
|
+
type JavaScriptAstModule,
|
|
20
|
+
type FrontierProjectionTarget as JavaScriptProjectionTarget,
|
|
21
|
+
type FrontierProjectionSourceSpan as JavaScriptProjectionSourceSpan,
|
|
22
|
+
type FrontierProjectionGeneratedSpan as JavaScriptProjectionGeneratedSpan,
|
|
23
|
+
type FrontierProjectionEvidenceRecord as JavaScriptProjectionEvidenceRecord,
|
|
24
|
+
type FrontierProjectionSourceMapMapping as JavaScriptProjectionSourceMapMapping,
|
|
25
|
+
type FrontierProjectionSourceMap as JavaScriptProjectionSourceMap,
|
|
26
|
+
toJavaScriptAst,
|
|
27
|
+
renderJavaScriptAst,
|
|
28
|
+
renderJavaScriptAstWithSourceMap,
|
|
29
|
+
emitJavaScript,
|
|
30
|
+
emitJavaScriptWithSourceMap
|
|
31
|
+
} from "@shapeshift-labs/frontier-lang-javascript";
|
|
32
|
+
export {
|
|
33
|
+
type EmitRustOptions,
|
|
34
|
+
type RustSourceMapResult,
|
|
35
|
+
type EmitRustWithSourceMapResult,
|
|
36
|
+
type RustSourceRef,
|
|
37
|
+
type RustAstItem,
|
|
38
|
+
type RustAstModule,
|
|
39
|
+
type FrontierProjectionTarget as RustProjectionTarget,
|
|
40
|
+
type FrontierProjectionSourceSpan as RustProjectionSourceSpan,
|
|
41
|
+
type FrontierProjectionGeneratedSpan as RustProjectionGeneratedSpan,
|
|
42
|
+
type FrontierProjectionEvidenceRecord as RustProjectionEvidenceRecord,
|
|
43
|
+
type FrontierProjectionSourceMapMapping as RustProjectionSourceMapMapping,
|
|
44
|
+
type FrontierProjectionSourceMap as RustProjectionSourceMap,
|
|
45
|
+
toRustAst,
|
|
46
|
+
renderRustAst,
|
|
47
|
+
renderRustAstWithSourceMap,
|
|
48
|
+
emitRust,
|
|
49
|
+
emitRustWithSourceMap
|
|
50
|
+
} from "@shapeshift-labs/frontier-lang-rust";
|
|
51
|
+
export {
|
|
52
|
+
type EmitPythonOptions,
|
|
53
|
+
type PythonSourceMapResult,
|
|
54
|
+
type EmitPythonWithSourceMapResult,
|
|
55
|
+
type PythonSourceRef,
|
|
56
|
+
type PythonAstDeclaration,
|
|
57
|
+
type PythonAstModule,
|
|
58
|
+
type FrontierProjectionTarget as PythonProjectionTarget,
|
|
59
|
+
type FrontierProjectionSourceSpan as PythonProjectionSourceSpan,
|
|
60
|
+
type FrontierProjectionGeneratedSpan as PythonProjectionGeneratedSpan,
|
|
61
|
+
type FrontierProjectionEvidenceRecord as PythonProjectionEvidenceRecord,
|
|
62
|
+
type FrontierProjectionSourceMapMapping as PythonProjectionSourceMapMapping,
|
|
63
|
+
type FrontierProjectionSourceMap as PythonProjectionSourceMap,
|
|
64
|
+
toPythonAst,
|
|
65
|
+
renderPythonAst,
|
|
66
|
+
renderPythonAstWithSourceMap,
|
|
67
|
+
emitPython,
|
|
68
|
+
emitPythonWithSourceMap
|
|
69
|
+
} from "@shapeshift-labs/frontier-lang-python";
|
|
70
|
+
export {
|
|
71
|
+
type EmitCHeaderOptions,
|
|
72
|
+
type CSourceMapResult,
|
|
73
|
+
type EmitCHeaderWithSourceMapResult,
|
|
74
|
+
type CSourceRef,
|
|
75
|
+
type CAstDeclaration,
|
|
76
|
+
type CAstHeader,
|
|
77
|
+
type FrontierProjectionTarget as CProjectionTarget,
|
|
78
|
+
type FrontierProjectionSourceSpan as CProjectionSourceSpan,
|
|
79
|
+
type FrontierProjectionGeneratedSpan as CProjectionGeneratedSpan,
|
|
80
|
+
type FrontierProjectionEvidenceRecord as CProjectionEvidenceRecord,
|
|
81
|
+
type FrontierProjectionSourceMapMapping as CProjectionSourceMapMapping,
|
|
82
|
+
type FrontierProjectionSourceMap as CProjectionSourceMap,
|
|
83
|
+
toCAst,
|
|
84
|
+
renderCAst,
|
|
85
|
+
renderCAstWithSourceMap,
|
|
86
|
+
emitCHeader,
|
|
87
|
+
emitCHeaderWithSourceMap
|
|
88
|
+
} from "@shapeshift-labs/frontier-lang-c";
|
|
89
|
+
|
|
90
|
+
export * as frontierLangJavaScript from "@shapeshift-labs/frontier-lang-javascript";
|
|
91
|
+
export * as frontierLangRust from "@shapeshift-labs/frontier-lang-rust";
|
|
92
|
+
export * as frontierLangPython from "@shapeshift-labs/frontier-lang-python";
|
|
93
|
+
export * as frontierLangC from "@shapeshift-labs/frontier-lang-c";
|
package/dist/index.js
CHANGED
|
@@ -2,10 +2,6 @@ export * from "@shapeshift-labs/frontier-lang-kernel";
|
|
|
2
2
|
export * from "@shapeshift-labs/frontier-lang-parser";
|
|
3
3
|
export * from "@shapeshift-labs/frontier-lang-checker";
|
|
4
4
|
export * from "@shapeshift-labs/frontier-lang-typescript";
|
|
5
|
-
export * from "@shapeshift-labs/frontier-lang-javascript";
|
|
6
|
-
export * from "@shapeshift-labs/frontier-lang-rust";
|
|
7
|
-
export * from "@shapeshift-labs/frontier-lang-python";
|
|
8
|
-
export * from "@shapeshift-labs/frontier-lang-c";
|
|
9
5
|
export * from "@shapeshift-labs/frontier-lang-compiler";
|
|
10
6
|
export * from "@shapeshift-labs/frontier-lang-swift";
|
|
11
7
|
export * from "@shapeshift-labs/frontier-lang-kotlin";
|
|
@@ -13,3 +9,37 @@ export * from "@shapeshift-labs/frontier-lang-java";
|
|
|
13
9
|
export * from "@shapeshift-labs/frontier-lang-go";
|
|
14
10
|
export * from "@shapeshift-labs/frontier-lang-csharp";
|
|
15
11
|
export * from "@shapeshift-labs/frontier-lang-clang";
|
|
12
|
+
|
|
13
|
+
export {
|
|
14
|
+
toJavaScriptAst,
|
|
15
|
+
renderJavaScriptAst,
|
|
16
|
+
renderJavaScriptAstWithSourceMap,
|
|
17
|
+
emitJavaScript,
|
|
18
|
+
emitJavaScriptWithSourceMap
|
|
19
|
+
} from "@shapeshift-labs/frontier-lang-javascript";
|
|
20
|
+
export {
|
|
21
|
+
toRustAst,
|
|
22
|
+
renderRustAst,
|
|
23
|
+
renderRustAstWithSourceMap,
|
|
24
|
+
emitRust,
|
|
25
|
+
emitRustWithSourceMap
|
|
26
|
+
} from "@shapeshift-labs/frontier-lang-rust";
|
|
27
|
+
export {
|
|
28
|
+
toPythonAst,
|
|
29
|
+
renderPythonAst,
|
|
30
|
+
renderPythonAstWithSourceMap,
|
|
31
|
+
emitPython,
|
|
32
|
+
emitPythonWithSourceMap
|
|
33
|
+
} from "@shapeshift-labs/frontier-lang-python";
|
|
34
|
+
export {
|
|
35
|
+
toCAst,
|
|
36
|
+
renderCAst,
|
|
37
|
+
renderCAstWithSourceMap,
|
|
38
|
+
emitCHeader,
|
|
39
|
+
emitCHeaderWithSourceMap
|
|
40
|
+
} from "@shapeshift-labs/frontier-lang-c";
|
|
41
|
+
|
|
42
|
+
export * as frontierLangJavaScript from "@shapeshift-labs/frontier-lang-javascript";
|
|
43
|
+
export * as frontierLangRust from "@shapeshift-labs/frontier-lang-rust";
|
|
44
|
+
export * as frontierLangPython from "@shapeshift-labs/frontier-lang-python";
|
|
45
|
+
export * as frontierLangC from "@shapeshift-labs/frontier-lang-c";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shapeshift-labs/frontier-lang",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.41",
|
|
4
4
|
"description": "Umbrella package for Frontier Lang kernel, parser, checker, compiler, and projection packages.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -59,18 +59,18 @@
|
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@shapeshift-labs/frontier-lang-c": "0.2.8",
|
|
61
61
|
"@shapeshift-labs/frontier-lang-checker": "0.3.7",
|
|
62
|
-
"@shapeshift-labs/frontier-lang-clang": "0.1.
|
|
63
|
-
"@shapeshift-labs/frontier-lang-compiler": "0.2.
|
|
64
|
-
"@shapeshift-labs/frontier-lang-csharp": "0.1.
|
|
65
|
-
"@shapeshift-labs/frontier-lang-go": "0.1.
|
|
66
|
-
"@shapeshift-labs/frontier-lang-java": "0.1.
|
|
62
|
+
"@shapeshift-labs/frontier-lang-clang": "0.1.6",
|
|
63
|
+
"@shapeshift-labs/frontier-lang-compiler": "0.2.47",
|
|
64
|
+
"@shapeshift-labs/frontier-lang-csharp": "0.1.6",
|
|
65
|
+
"@shapeshift-labs/frontier-lang-go": "0.1.6",
|
|
66
|
+
"@shapeshift-labs/frontier-lang-java": "0.1.6",
|
|
67
67
|
"@shapeshift-labs/frontier-lang-javascript": "0.2.8",
|
|
68
68
|
"@shapeshift-labs/frontier-lang-kernel": "0.3.11",
|
|
69
|
-
"@shapeshift-labs/frontier-lang-kotlin": "0.1.
|
|
69
|
+
"@shapeshift-labs/frontier-lang-kotlin": "0.1.6",
|
|
70
70
|
"@shapeshift-labs/frontier-lang-parser": "0.3.7",
|
|
71
71
|
"@shapeshift-labs/frontier-lang-python": "0.2.8",
|
|
72
72
|
"@shapeshift-labs/frontier-lang-rust": "0.2.8",
|
|
73
|
-
"@shapeshift-labs/frontier-lang-swift": "0.1.
|
|
73
|
+
"@shapeshift-labs/frontier-lang-swift": "0.1.6",
|
|
74
74
|
"@shapeshift-labs/frontier-lang-typescript": "0.3.8"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|