@alloy-js/python 0.2.0-dev.2 → 0.2.0-dev.4
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/src/builtins/python.d.ts +3 -0
- package/dist/src/builtins/python.d.ts.map +1 -1
- package/dist/src/builtins/python.js +6 -0
- package/dist/src/builtins/python.js.map +1 -1
- package/dist/src/components/CallSignature.d.ts +4 -15
- package/dist/src/components/CallSignature.d.ts.map +1 -1
- package/dist/src/components/CallSignature.js +13 -67
- package/dist/src/components/CallSignature.js.map +1 -1
- package/dist/src/components/ClassMethodDeclaration.d.ts +22 -0
- package/dist/src/components/ClassMethodDeclaration.d.ts.map +1 -0
- package/dist/src/components/ClassMethodDeclaration.js +32 -0
- package/dist/src/components/ClassMethodDeclaration.js.map +1 -0
- package/dist/src/components/ConstructorDeclaration.d.ts +21 -0
- package/dist/src/components/ConstructorDeclaration.d.ts.map +1 -0
- package/dist/src/components/ConstructorDeclaration.js +35 -0
- package/dist/src/components/ConstructorDeclaration.js.map +1 -0
- package/dist/src/components/DunderMethodDeclaration.d.ts +21 -0
- package/dist/src/components/DunderMethodDeclaration.d.ts.map +1 -0
- package/dist/src/components/DunderMethodDeclaration.js +29 -0
- package/dist/src/components/DunderMethodDeclaration.js.map +1 -0
- package/dist/src/components/EnumDeclaration.d.ts +11 -32
- package/dist/src/components/EnumDeclaration.d.ts.map +1 -1
- package/dist/src/components/EnumDeclaration.js +10 -48
- package/dist/src/components/EnumDeclaration.js.map +1 -1
- package/dist/src/components/EnumMember.js +3 -3
- package/dist/src/components/EnumMember.js.map +1 -1
- package/dist/src/components/FunctionBase.d.ts +48 -0
- package/dist/src/components/FunctionBase.d.ts.map +1 -0
- package/dist/src/components/FunctionBase.js +91 -0
- package/dist/src/components/FunctionBase.js.map +1 -0
- package/dist/src/components/FunctionDeclaration.d.ts +11 -31
- package/dist/src/components/FunctionDeclaration.d.ts.map +1 -1
- package/dist/src/components/FunctionDeclaration.js +22 -79
- package/dist/src/components/FunctionDeclaration.js.map +1 -1
- package/dist/src/components/MemberExpression.d.ts.map +1 -1
- package/dist/src/components/MemberExpression.js +12 -13
- package/dist/src/components/MemberExpression.js.map +1 -1
- package/dist/src/components/MethodBase.d.ts +29 -0
- package/dist/src/components/MethodBase.d.ts.map +1 -0
- package/dist/src/components/MethodBase.js +32 -0
- package/dist/src/components/MethodBase.js.map +1 -0
- package/dist/src/components/MethodDeclaration.d.ts +22 -0
- package/dist/src/components/MethodDeclaration.d.ts.map +1 -0
- package/dist/src/components/MethodDeclaration.js +34 -0
- package/dist/src/components/MethodDeclaration.js.map +1 -0
- package/dist/src/components/PropertyDeclaration.d.ts +71 -0
- package/dist/src/components/PropertyDeclaration.d.ts.map +1 -0
- package/dist/src/components/PropertyDeclaration.js +227 -0
- package/dist/src/components/PropertyDeclaration.js.map +1 -0
- package/dist/src/components/PyDoc.d.ts +107 -42
- package/dist/src/components/PyDoc.d.ts.map +1 -1
- package/dist/src/components/PyDoc.js +845 -181
- package/dist/src/components/PyDoc.js.map +1 -1
- package/dist/src/components/SourceFile.d.ts +24 -0
- package/dist/src/components/SourceFile.d.ts.map +1 -1
- package/dist/src/components/SourceFile.js +28 -1
- package/dist/src/components/SourceFile.js.map +1 -1
- package/dist/src/components/StaticMethodDeclaration.d.ts +22 -0
- package/dist/src/components/StaticMethodDeclaration.d.ts.map +1 -0
- package/dist/src/components/StaticMethodDeclaration.js +32 -0
- package/dist/src/components/StaticMethodDeclaration.js.map +1 -0
- package/dist/src/components/TypeArguments.d.ts +9 -0
- package/dist/src/components/TypeArguments.d.ts.map +1 -0
- package/dist/src/components/TypeArguments.js +18 -0
- package/dist/src/components/TypeArguments.js.map +1 -0
- package/dist/src/components/TypeReference.d.ts +14 -0
- package/dist/src/components/TypeReference.d.ts.map +1 -0
- package/dist/src/components/TypeReference.js +29 -0
- package/dist/src/components/TypeReference.js.map +1 -0
- package/dist/src/components/UnionTypeExpression.d.ts +1 -2
- package/dist/src/components/UnionTypeExpression.d.ts.map +1 -1
- package/dist/src/components/UnionTypeExpression.js +3 -11
- package/dist/src/components/UnionTypeExpression.js.map +1 -1
- package/dist/src/components/VariableDeclaration.d.ts.map +1 -1
- package/dist/src/components/VariableDeclaration.js +3 -3
- package/dist/src/components/VariableDeclaration.js.map +1 -1
- package/dist/src/components/index.d.ts +10 -0
- package/dist/src/components/index.d.ts.map +1 -1
- package/dist/src/components/index.js +9 -0
- package/dist/src/components/index.js.map +1 -1
- package/dist/src/parameter-descriptor.d.ts +1 -4
- package/dist/src/parameter-descriptor.d.ts.map +1 -1
- package/dist/src/parameter-descriptor.js +7 -1
- package/dist/src/parameter-descriptor.js.map +1 -1
- package/dist/src/symbol-creation.d.ts +4 -0
- package/dist/src/symbol-creation.d.ts.map +1 -1
- package/dist/src/symbol-creation.js +12 -0
- package/dist/src/symbol-creation.js.map +1 -1
- package/dist/src/symbols/factories.d.ts +15 -0
- package/dist/src/symbols/factories.d.ts.map +1 -0
- package/dist/src/symbols/factories.js +28 -0
- package/dist/src/symbols/factories.js.map +1 -0
- package/dist/src/symbols/index.d.ts +1 -0
- package/dist/src/symbols/index.d.ts.map +1 -1
- package/dist/src/symbols/index.js +1 -0
- package/dist/src/symbols/index.js.map +1 -1
- package/dist/src/symbols/reference.d.ts +1 -1
- package/dist/src/symbols/reference.d.ts.map +1 -1
- package/dist/src/symbols/reference.js +1 -1
- package/dist/src/symbols/reference.js.map +1 -1
- package/dist/src/utils.d.ts.map +1 -1
- package/dist/src/utils.js +1 -1
- package/dist/src/utils.js.map +1 -1
- package/dist/test/callsignatures.test.js +42 -64
- package/dist/test/callsignatures.test.js.map +1 -1
- package/dist/test/class-method-declaration.test.d.ts +2 -0
- package/dist/test/class-method-declaration.test.d.ts.map +1 -0
- package/dist/test/class-method-declaration.test.js +61 -0
- package/dist/test/class-method-declaration.test.js.map +1 -0
- package/dist/test/classdeclarations.test.js +6 -8
- package/dist/test/classdeclarations.test.js.map +1 -1
- package/dist/test/constructordeclaration.test.d.ts +2 -0
- package/dist/test/constructordeclaration.test.d.ts.map +1 -0
- package/dist/test/constructordeclaration.test.js +58 -0
- package/dist/test/constructordeclaration.test.js.map +1 -0
- package/dist/test/dundermethoddeclaration.test.d.ts +2 -0
- package/dist/test/dundermethoddeclaration.test.d.ts.map +1 -0
- package/dist/test/dundermethoddeclaration.test.js +65 -0
- package/dist/test/dundermethoddeclaration.test.js.map +1 -0
- package/dist/test/enums.test.js +14 -16
- package/dist/test/enums.test.js.map +1 -1
- package/dist/test/externals.test.js +2 -4
- package/dist/test/externals.test.js.map +1 -1
- package/dist/test/factories.test.d.ts +2 -0
- package/dist/test/factories.test.d.ts.map +1 -0
- package/dist/test/factories.test.js +78 -0
- package/dist/test/factories.test.js.map +1 -0
- package/dist/test/functiondeclaration.test.js +213 -59
- package/dist/test/functiondeclaration.test.js.map +1 -1
- package/dist/test/memberexpressions.test.js +1 -1
- package/dist/test/memberexpressions.test.js.map +1 -1
- package/dist/test/methoddeclaration.test.d.ts +2 -0
- package/dist/test/methoddeclaration.test.d.ts.map +1 -0
- package/dist/test/methoddeclaration.test.js +239 -0
- package/dist/test/methoddeclaration.test.js.map +1 -0
- package/dist/test/namepolicies.test.js +1 -2
- package/dist/test/namepolicies.test.js.map +1 -1
- package/dist/test/propertydeclaration.test.d.ts +2 -0
- package/dist/test/propertydeclaration.test.d.ts.map +1 -0
- package/dist/test/propertydeclaration.test.js +229 -0
- package/dist/test/propertydeclaration.test.js.map +1 -0
- package/dist/test/pydocs.test.js +926 -126
- package/dist/test/pydocs.test.js.map +1 -1
- package/dist/test/references.test.js +1 -5
- package/dist/test/references.test.js.map +1 -1
- package/dist/test/sourcefiles.test.js +90 -1
- package/dist/test/sourcefiles.test.js.map +1 -1
- package/dist/test/staticmethoddeclaration.test.d.ts +2 -0
- package/dist/test/staticmethoddeclaration.test.d.ts.map +1 -0
- package/dist/test/staticmethoddeclaration.test.js +61 -0
- package/dist/test/staticmethoddeclaration.test.js.map +1 -0
- package/dist/test/typereference.test.d.ts +2 -0
- package/dist/test/typereference.test.d.ts.map +1 -0
- package/dist/test/typereference.test.js +51 -0
- package/dist/test/typereference.test.js.map +1 -0
- package/dist/test/uniontypeexpression.test.js +152 -15
- package/dist/test/uniontypeexpression.test.js.map +1 -1
- package/dist/test/variables.test.js +28 -19
- package/dist/test/variables.test.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/builtins/python.ts +7 -0
- package/src/components/CallSignature.tsx +17 -69
- package/src/components/ClassMethodDeclaration.tsx +34 -0
- package/src/components/ConstructorDeclaration.tsx +37 -0
- package/src/components/DunderMethodDeclaration.tsx +30 -0
- package/src/components/EnumDeclaration.tsx +16 -44
- package/src/components/EnumMember.tsx +3 -3
- package/src/components/FunctionBase.tsx +88 -0
- package/src/components/FunctionDeclaration.tsx +18 -82
- package/src/components/MemberExpression.tsx +6 -19
- package/src/components/MethodBase.tsx +53 -0
- package/src/components/MethodDeclaration.tsx +27 -0
- package/src/components/PropertyDeclaration.tsx +264 -0
- package/src/components/PyDoc.tsx +795 -195
- package/src/components/SourceFile.tsx +29 -0
- package/src/components/StaticMethodDeclaration.tsx +34 -0
- package/src/components/TypeArguments.tsx +24 -0
- package/src/components/TypeReference.tsx +33 -0
- package/src/components/UnionTypeExpression.tsx +4 -15
- package/src/components/VariableDeclaration.tsx +1 -3
- package/src/components/index.ts +10 -0
- package/src/parameter-descriptor.ts +6 -5
- package/src/symbol-creation.ts +17 -0
- package/src/symbols/factories.ts +39 -0
- package/src/symbols/index.ts +1 -0
- package/src/symbols/reference.tsx +3 -5
- package/src/utils.ts +0 -2
- package/temp/api.json +5281 -2273
- package/test/callsignatures.test.tsx +102 -74
- package/test/class-method-declaration.test.tsx +53 -0
- package/test/classdeclarations.test.tsx +7 -9
- package/test/constructordeclaration.test.tsx +48 -0
- package/test/dundermethoddeclaration.test.tsx +53 -0
- package/test/enums.test.tsx +14 -16
- package/test/externals.test.tsx +5 -7
- package/test/factories.test.tsx +72 -0
- package/test/functiondeclaration.test.tsx +196 -44
- package/test/memberexpressions.test.tsx +7 -2
- package/test/methoddeclaration.test.tsx +202 -0
- package/test/namepolicies.test.tsx +1 -2
- package/test/propertydeclaration.test.tsx +192 -0
- package/test/pydocs.test.tsx +1093 -129
- package/test/references.test.tsx +1 -1
- package/test/sourcefiles.test.tsx +100 -1
- package/test/staticmethoddeclaration.test.tsx +49 -0
- package/test/typereference.test.tsx +52 -0
- package/test/uniontypeexpression.test.tsx +169 -34
- package/test/variables.test.tsx +27 -16
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createComponent as _$createComponent } from "@alloy-js/core/jsx-runtime";
|
|
2
|
-
import {
|
|
2
|
+
import { namekey, refkey } from "@alloy-js/core";
|
|
3
3
|
import { d } from "@alloy-js/core/testing";
|
|
4
4
|
import { describe, expect, it } from "vitest";
|
|
5
5
|
import * as py from "../src/index.js";
|
|
@@ -23,6 +23,16 @@ describe("Python Variable", () => {
|
|
|
23
23
|
})]);
|
|
24
24
|
expect(res).toBe(`my_var: int = 42`);
|
|
25
25
|
});
|
|
26
|
+
it("takes a namekey", () => {
|
|
27
|
+
const res = toSourceText([_$createComponent(py.VariableDeclaration, {
|
|
28
|
+
get name() {
|
|
29
|
+
return namekey("my-var");
|
|
30
|
+
},
|
|
31
|
+
type: "int",
|
|
32
|
+
initializer: 42
|
|
33
|
+
})]);
|
|
34
|
+
expect(res).toBe(`my_var: int = 42`);
|
|
35
|
+
});
|
|
26
36
|
it("declares a python variable without value", () => {
|
|
27
37
|
const res = toSourceText([_$createComponent(py.VariableDeclaration, {
|
|
28
38
|
name: "myVar",
|
|
@@ -58,7 +68,12 @@ describe("Python Variable", () => {
|
|
|
58
68
|
it("declares a python variable that's an array", () => {
|
|
59
69
|
const res = toSourceText([_$createComponent(py.VariableDeclaration, {
|
|
60
70
|
name: "numbers",
|
|
61
|
-
type
|
|
71
|
+
get type() {
|
|
72
|
+
return _$createComponent(py.TypeReference, {
|
|
73
|
+
name: "list",
|
|
74
|
+
typeArgs: ["int"]
|
|
75
|
+
});
|
|
76
|
+
},
|
|
62
77
|
get initializer() {
|
|
63
78
|
return _$createComponent(py.Atom, {
|
|
64
79
|
jsValue: [1, 2, 3]
|
|
@@ -106,16 +121,15 @@ describe("Python Variable", () => {
|
|
|
106
121
|
expect(res).toBe(`12`);
|
|
107
122
|
});
|
|
108
123
|
it("declares a python variable with an optional type", () => {
|
|
109
|
-
const elements = [code`int`];
|
|
110
|
-
const typing = _$createComponent(py.UnionTypeExpression, {
|
|
111
|
-
optional: true,
|
|
112
|
-
children: elements
|
|
113
|
-
});
|
|
114
124
|
const res = toSourceText([_$createComponent(py.StatementList, {
|
|
115
125
|
get children() {
|
|
116
126
|
return _$createComponent(py.VariableDeclaration, {
|
|
117
127
|
name: "my_var",
|
|
118
|
-
type
|
|
128
|
+
get type() {
|
|
129
|
+
return _$createComponent(py.UnionTypeExpression, {
|
|
130
|
+
children: ["int", "None"]
|
|
131
|
+
});
|
|
132
|
+
}
|
|
119
133
|
});
|
|
120
134
|
}
|
|
121
135
|
})]);
|
|
@@ -123,16 +137,15 @@ describe("Python Variable", () => {
|
|
|
123
137
|
my_var: int | None = None`);
|
|
124
138
|
});
|
|
125
139
|
it("declares a python variable with an optional type omitting none", () => {
|
|
126
|
-
const elements = [code`int`];
|
|
127
|
-
const typing = _$createComponent(py.UnionTypeExpression, {
|
|
128
|
-
optional: true,
|
|
129
|
-
children: elements
|
|
130
|
-
});
|
|
131
140
|
const res = toSourceText([_$createComponent(py.StatementList, {
|
|
132
141
|
get children() {
|
|
133
142
|
return _$createComponent(py.VariableDeclaration, {
|
|
134
143
|
name: "my_var",
|
|
135
|
-
type
|
|
144
|
+
get type() {
|
|
145
|
+
return _$createComponent(py.UnionTypeExpression, {
|
|
146
|
+
children: ["int", "None"]
|
|
147
|
+
});
|
|
148
|
+
},
|
|
136
149
|
omitNone: true
|
|
137
150
|
});
|
|
138
151
|
}
|
|
@@ -178,11 +191,7 @@ describe("Python Variable", () => {
|
|
|
178
191
|
get children() {
|
|
179
192
|
return _$createComponent(py.VariableDeclaration, {
|
|
180
193
|
name: "my_var",
|
|
181
|
-
|
|
182
|
-
return _$createComponent(py.Reference, {
|
|
183
|
-
refkey: classKey
|
|
184
|
-
});
|
|
185
|
-
}
|
|
194
|
+
type: classKey
|
|
186
195
|
});
|
|
187
196
|
}
|
|
188
197
|
})]);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["namekey","refkey","d","describe","expect","it","py","assertFileContents","toSourceText","toSourceTextMultiple","res","_$createComponent","VariableDeclaration","name","type","initializer","toBe","omitNone","Atom","jsValue","TypeReference","typeArgs","John","Doe","callStatementVar","StatementList","children","UnionTypeExpression","classKey","ClassDeclaration","Reference","SourceFile","path","varKey"],"sources":["../../test/variables.test.tsx"],"sourcesContent":[null],"mappings":"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","ignoreList":[]}
|