@alloy-js/python 0.2.0-dev.3 → 0.2.0-dev.5
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/Atom.d.ts +1 -0
- package/dist/src/components/Atom.d.ts.map +1 -1
- package/dist/src/components/Atom.js +3 -0
- package/dist/src/components/Atom.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/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/values.test.js +35 -0
- package/dist/test/values.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/Atom.tsx +4 -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/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 +5323 -2288
- 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/values.test.tsx +34 -0
- package/test/variables.test.tsx +27 -16
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
import { createComponent as _$createComponent, memo as _$memo, mergeProps as _$mergeProps, createIntrinsic as _$createIntrinsic } from "@alloy-js/core/jsx-runtime";
|
|
2
|
+
import { DeclarationContext, List, Show, childrenArray, code, createContext, findKeyedChild, findUnkeyedChildren, taggedComponent, useContext } from "@alloy-js/core";
|
|
3
|
+
import { createMethodSymbol } from "../symbols/factories.js";
|
|
4
|
+
import { Atom } from "./Atom.js";
|
|
5
|
+
import { MethodDeclarationBase } from "./MethodBase.js";
|
|
6
|
+
const setterTag = Symbol();
|
|
7
|
+
const deleterTag = Symbol();
|
|
8
|
+
|
|
9
|
+
/** Context to provide property type information within a PropertyDeclaration */
|
|
10
|
+
const PropertyContext = createContext();
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Declares a Python property with optional getter, setter, and deleter methods.
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* ```tsx
|
|
17
|
+
* <py.PropertyDeclaration name="name" type={{ children: "str" }}>
|
|
18
|
+
* return self._name
|
|
19
|
+
* </py.PropertyDeclaration>
|
|
20
|
+
* ```
|
|
21
|
+
* Generates:
|
|
22
|
+
* ```python
|
|
23
|
+
* @property
|
|
24
|
+
* def name(self) -> str:
|
|
25
|
+
* return self._name
|
|
26
|
+
* ```
|
|
27
|
+
*
|
|
28
|
+
* @example Setter and deleter
|
|
29
|
+
* ```tsx
|
|
30
|
+
* <py.PropertyDeclaration name="value" type={{ children: "int" }}>
|
|
31
|
+
* return self._value
|
|
32
|
+
* <py.PropertyDeclaration.Setter type={{ children: "int" }}>
|
|
33
|
+
* self._value = value
|
|
34
|
+
* </py.PropertyDeclaration.Setter>
|
|
35
|
+
* <py.PropertyDeclaration.Deleter>
|
|
36
|
+
* del self._value
|
|
37
|
+
* </py.PropertyDeclaration.Deleter>
|
|
38
|
+
* </py.PropertyDeclaration>
|
|
39
|
+
* ```
|
|
40
|
+
* Generates:
|
|
41
|
+
* ```python
|
|
42
|
+
* @property
|
|
43
|
+
* def value(self) -> int:
|
|
44
|
+
* return self._value
|
|
45
|
+
*
|
|
46
|
+
* @value.setter
|
|
47
|
+
* def value(self, value: int) -> None:
|
|
48
|
+
* self._value = value
|
|
49
|
+
*
|
|
50
|
+
* @value.deleter
|
|
51
|
+
* def value(self) -> None:
|
|
52
|
+
* del self._value
|
|
53
|
+
* ```
|
|
54
|
+
*
|
|
55
|
+
* @remarks
|
|
56
|
+
* The property must be declared within a class. The getter method is
|
|
57
|
+
* automatically generated using the `@property` decorator. Use the nested
|
|
58
|
+
* `Setter` and `Deleter` components to add mutators.
|
|
59
|
+
*/
|
|
60
|
+
|
|
61
|
+
export function PropertyDeclaration(props) {
|
|
62
|
+
const nonEmptyOrNotImplemented = children => {
|
|
63
|
+
if (children && childrenArray(() => children).length > 0) {
|
|
64
|
+
return children;
|
|
65
|
+
} else {
|
|
66
|
+
return [code`raise NotImplementedError`];
|
|
67
|
+
}
|
|
68
|
+
};
|
|
69
|
+
const children = childrenArray(() => props.children);
|
|
70
|
+
const setterComponent = findKeyedChild(children, PropertyDeclaration.Setter.tag) ?? undefined;
|
|
71
|
+
const deleterComponent = findKeyedChild(children, PropertyDeclaration.Deleter.tag) ?? undefined;
|
|
72
|
+
const setterChildren = nonEmptyOrNotImplemented(setterComponent?.props?.children);
|
|
73
|
+
const deleterChildren = nonEmptyOrNotImplemented(deleterComponent?.props?.children);
|
|
74
|
+
const unkeyedChildren = nonEmptyOrNotImplemented(findUnkeyedChildren(children));
|
|
75
|
+
const sym = createMethodSymbol(props.name, {
|
|
76
|
+
refkeys: props.refkey
|
|
77
|
+
});
|
|
78
|
+
return [_$createComponent(DeclarationContext.Provider, {
|
|
79
|
+
value: sym,
|
|
80
|
+
get children() {
|
|
81
|
+
return _$createComponent(PropertyContext.Provider, {
|
|
82
|
+
get value() {
|
|
83
|
+
return props.type;
|
|
84
|
+
},
|
|
85
|
+
get children() {
|
|
86
|
+
return _$createComponent(List, {
|
|
87
|
+
hardline: true,
|
|
88
|
+
enderPunctuation: true,
|
|
89
|
+
get children() {
|
|
90
|
+
return [_$createComponent(PropertyMethodDeclaration, {
|
|
91
|
+
get abstract() {
|
|
92
|
+
return props.abstract;
|
|
93
|
+
},
|
|
94
|
+
get doc() {
|
|
95
|
+
return props.doc;
|
|
96
|
+
},
|
|
97
|
+
children: unkeyedChildren
|
|
98
|
+
}), _$createComponent(Show, {
|
|
99
|
+
get when() {
|
|
100
|
+
return Boolean(setterComponent);
|
|
101
|
+
},
|
|
102
|
+
get children() {
|
|
103
|
+
return _$createComponent(PropertyDeclaration.Setter, _$mergeProps(() => setterComponent?.props, {
|
|
104
|
+
get type() {
|
|
105
|
+
return setterComponent?.props?.type ?? props.type;
|
|
106
|
+
},
|
|
107
|
+
get abstract() {
|
|
108
|
+
return setterComponent?.props?.abstract ?? props.abstract;
|
|
109
|
+
},
|
|
110
|
+
children: setterChildren
|
|
111
|
+
}));
|
|
112
|
+
}
|
|
113
|
+
}), _$createComponent(Show, {
|
|
114
|
+
get when() {
|
|
115
|
+
return Boolean(deleterComponent);
|
|
116
|
+
},
|
|
117
|
+
get children() {
|
|
118
|
+
return _$createComponent(PropertyDeclaration.Deleter, _$mergeProps(() => deleterComponent?.props, {
|
|
119
|
+
get abstract() {
|
|
120
|
+
return deleterComponent?.props?.abstract ?? props.abstract;
|
|
121
|
+
},
|
|
122
|
+
children: deleterChildren
|
|
123
|
+
}));
|
|
124
|
+
}
|
|
125
|
+
})];
|
|
126
|
+
}
|
|
127
|
+
});
|
|
128
|
+
}
|
|
129
|
+
});
|
|
130
|
+
}
|
|
131
|
+
})];
|
|
132
|
+
}
|
|
133
|
+
function PropertyMethodDeclaration(props) {
|
|
134
|
+
const propertySymbol = useContext(DeclarationContext);
|
|
135
|
+
const propertyType = useContext(PropertyContext);
|
|
136
|
+
return [code`@property`, _$createIntrinsic("hbr", {}), _$createComponent(MethodDeclarationBase, _$mergeProps(props, {
|
|
137
|
+
get name() {
|
|
138
|
+
return propertySymbol.name;
|
|
139
|
+
},
|
|
140
|
+
functionType: "instance",
|
|
141
|
+
returnType: propertyType,
|
|
142
|
+
sym: propertySymbol,
|
|
143
|
+
get children() {
|
|
144
|
+
return props.children;
|
|
145
|
+
}
|
|
146
|
+
}))];
|
|
147
|
+
}
|
|
148
|
+
function PropertyMethodBase(props) {
|
|
149
|
+
const propertySymbol = useContext(DeclarationContext);
|
|
150
|
+
const {
|
|
151
|
+
decoratorType,
|
|
152
|
+
parameters,
|
|
153
|
+
children,
|
|
154
|
+
...restProps
|
|
155
|
+
} = props;
|
|
156
|
+
return [_$memo(() => code`@${propertySymbol.name}.${decoratorType}`), _$createIntrinsic("hbr", {}), _$createComponent(MethodDeclarationBase, _$mergeProps(restProps, {
|
|
157
|
+
get name() {
|
|
158
|
+
return propertySymbol.name;
|
|
159
|
+
},
|
|
160
|
+
functionType: "instance",
|
|
161
|
+
parameters: parameters,
|
|
162
|
+
get returnType() {
|
|
163
|
+
return _$createComponent(Atom, {
|
|
164
|
+
jsValue: null
|
|
165
|
+
});
|
|
166
|
+
},
|
|
167
|
+
sym: propertySymbol,
|
|
168
|
+
children: children
|
|
169
|
+
}))];
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* Adds a setter to a `PropertyDeclaration`.
|
|
174
|
+
*
|
|
175
|
+
* @example
|
|
176
|
+
* ```tsx
|
|
177
|
+
* <py.PropertyDeclaration name="value" type={{ children: "int" }}>
|
|
178
|
+
* return self._value
|
|
179
|
+
* <py.PropertyDeclaration.Setter type={{ children: "int" }}>
|
|
180
|
+
* self._value = value
|
|
181
|
+
* </py.PropertyDeclaration.Setter>
|
|
182
|
+
* </py.PropertyDeclaration>
|
|
183
|
+
* ```
|
|
184
|
+
* Generates:
|
|
185
|
+
* ```python
|
|
186
|
+
* @value.setter
|
|
187
|
+
* def value(self, value: int) -> None:
|
|
188
|
+
* self._value = value
|
|
189
|
+
* ```
|
|
190
|
+
*/
|
|
191
|
+
PropertyDeclaration.Setter = taggedComponent(setterTag, function PropertySetter(props) {
|
|
192
|
+
return _$createComponent(PropertyMethodBase, _$mergeProps({
|
|
193
|
+
decoratorType: "setter",
|
|
194
|
+
get parameters() {
|
|
195
|
+
return [{
|
|
196
|
+
name: "value",
|
|
197
|
+
type: props.type
|
|
198
|
+
}];
|
|
199
|
+
}
|
|
200
|
+
}, props));
|
|
201
|
+
});
|
|
202
|
+
|
|
203
|
+
/**
|
|
204
|
+
* Adds a deleter to a `PropertyDeclaration`.
|
|
205
|
+
*
|
|
206
|
+
* @example
|
|
207
|
+
* ```tsx
|
|
208
|
+
* <py.PropertyDeclaration name="value" type={{ children: "int" }}>
|
|
209
|
+
* return self._value
|
|
210
|
+
* <py.PropertyDeclaration.Deleter>
|
|
211
|
+
* del self._value
|
|
212
|
+
* </py.PropertyDeclaration.Deleter>
|
|
213
|
+
* </py.PropertyDeclaration>
|
|
214
|
+
* ```
|
|
215
|
+
* Generates:
|
|
216
|
+
* ```python
|
|
217
|
+
* @value.deleter
|
|
218
|
+
* def value(self) -> None:
|
|
219
|
+
* del self._value
|
|
220
|
+
* ```
|
|
221
|
+
*/
|
|
222
|
+
PropertyDeclaration.Deleter = taggedComponent(deleterTag, function PropertyDeleter(props) {
|
|
223
|
+
return _$createComponent(PropertyMethodBase, _$mergeProps({
|
|
224
|
+
decoratorType: "deleter"
|
|
225
|
+
}, props));
|
|
226
|
+
});
|
|
227
|
+
//# sourceMappingURL=PropertyDeclaration.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["DeclarationContext","List","Show","childrenArray","code","createContext","findKeyedChild","findUnkeyedChildren","taggedComponent","useContext","createMethodSymbol","Atom","MethodDeclarationBase","setterTag","Symbol","deleterTag","PropertyContext","PropertyDeclaration","props","nonEmptyOrNotImplemented","children","length","setterComponent","Setter","tag","undefined","deleterComponent","Deleter","setterChildren","deleterChildren","unkeyedChildren","sym","name","refkeys","refkey","_$createComponent","Provider","value","type","hardline","enderPunctuation","PropertyMethodDeclaration","abstract","doc","when","Boolean","_$mergeProps","propertySymbol","propertyType","_$createIntrinsic","functionType","returnType","PropertyMethodBase","decoratorType","parameters","restProps","_$memo","jsValue","PropertySetter","PropertyDeleter"],"sources":["../../../src/components/PropertyDeclaration.tsx"],"sourcesContent":[null],"mappings":"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","ignoreList":[]}
|
|
@@ -1,76 +1,125 @@
|
|
|
1
1
|
import { Children } from "@alloy-js/core/jsx-runtime";
|
|
2
2
|
import { ParameterDescriptor } from "../parameter-descriptor.js";
|
|
3
|
-
export interface
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
parameters: ParameterDescriptor[] | string[];
|
|
3
|
+
export interface FunctionDocProps {
|
|
4
|
+
description: Children[];
|
|
5
|
+
parameters?: ParameterDescriptor[];
|
|
6
|
+
returns?: string;
|
|
7
|
+
yields?: string;
|
|
8
|
+
raises?: string[];
|
|
9
|
+
examples?: Children[];
|
|
10
|
+
seeAlso?: string[];
|
|
11
|
+
warning?: string;
|
|
12
|
+
deprecated?: string;
|
|
13
|
+
note?: string;
|
|
14
|
+
style?: "google";
|
|
16
15
|
}
|
|
17
16
|
/**
|
|
18
|
-
* A component that creates a
|
|
17
|
+
* A component that creates a FunctionDoc block for functions.
|
|
19
18
|
*/
|
|
20
|
-
export declare function
|
|
21
|
-
export interface
|
|
22
|
-
|
|
19
|
+
export declare function FunctionDoc(props: FunctionDocProps): Children;
|
|
20
|
+
export interface ClassDocProps {
|
|
21
|
+
description: Children[];
|
|
22
|
+
parameters?: ParameterDescriptor[];
|
|
23
|
+
attributes?: GoogleStyleDocAttributeProps[];
|
|
24
|
+
examples?: Children[];
|
|
25
|
+
seeAlso?: string[];
|
|
26
|
+
warning?: string;
|
|
27
|
+
deprecated?: string;
|
|
28
|
+
note?: string;
|
|
29
|
+
style?: "google";
|
|
23
30
|
}
|
|
24
31
|
/**
|
|
25
|
-
* A component that creates a
|
|
32
|
+
* A component that creates a ClassDoc block for classes.
|
|
26
33
|
*/
|
|
27
|
-
export declare function
|
|
28
|
-
export interface
|
|
29
|
-
|
|
34
|
+
export declare function ClassDoc(props: ClassDocProps): Children;
|
|
35
|
+
export interface ModuleDocProps {
|
|
36
|
+
description: Children[];
|
|
37
|
+
attributes?: GoogleStyleDocAttributeProps[];
|
|
38
|
+
examples?: Children[];
|
|
39
|
+
seeAlso?: string[];
|
|
40
|
+
warning?: string;
|
|
41
|
+
deprecated?: string;
|
|
42
|
+
todo?: string[];
|
|
43
|
+
style?: "google";
|
|
30
44
|
}
|
|
31
45
|
/**
|
|
32
|
-
* A component that creates a
|
|
46
|
+
* A component that creates a ModuleDoc block for module-level documentation.
|
|
33
47
|
*/
|
|
34
|
-
export declare function
|
|
35
|
-
export interface
|
|
48
|
+
export declare function ModuleDoc(props: ModuleDocProps): Children;
|
|
49
|
+
export interface PropertyDocProps {
|
|
50
|
+
description: Children[];
|
|
51
|
+
returns?: string;
|
|
52
|
+
examples?: Children[];
|
|
53
|
+
seeAlso?: string[];
|
|
54
|
+
warning?: string;
|
|
55
|
+
deprecated?: string;
|
|
56
|
+
note?: string;
|
|
57
|
+
style?: "google";
|
|
36
58
|
}
|
|
37
59
|
/**
|
|
38
|
-
* A component that creates a
|
|
60
|
+
* A component that creates a PropertyDoc block for `@property` decorated methods.
|
|
39
61
|
*/
|
|
40
|
-
export declare function
|
|
41
|
-
export interface
|
|
62
|
+
export declare function PropertyDoc(props: PropertyDocProps): Children;
|
|
63
|
+
export interface GeneratorDocProps {
|
|
42
64
|
description: Children[];
|
|
43
|
-
parameters?: ParameterDescriptor[]
|
|
44
|
-
|
|
65
|
+
parameters?: ParameterDescriptor[];
|
|
66
|
+
yields?: string;
|
|
45
67
|
raises?: string[];
|
|
68
|
+
examples?: Children[];
|
|
69
|
+
seeAlso?: string[];
|
|
70
|
+
warning?: string;
|
|
71
|
+
deprecated?: string;
|
|
72
|
+
note?: string;
|
|
46
73
|
style?: "google";
|
|
47
74
|
}
|
|
48
75
|
/**
|
|
49
|
-
* A component that creates a
|
|
76
|
+
* A component that creates a GeneratorDoc block for generator functions.
|
|
50
77
|
*/
|
|
51
|
-
export declare function
|
|
52
|
-
export interface
|
|
78
|
+
export declare function GeneratorDoc(props: GeneratorDocProps): Children;
|
|
79
|
+
export interface ExceptionDocProps {
|
|
53
80
|
description: Children[];
|
|
54
|
-
parameters?: ParameterDescriptor[]
|
|
81
|
+
parameters?: ParameterDescriptor[];
|
|
82
|
+
attributes?: GoogleStyleDocAttributeProps[];
|
|
83
|
+
examples?: Children[];
|
|
84
|
+
seeAlso?: string[];
|
|
85
|
+
warning?: string;
|
|
86
|
+
deprecated?: string;
|
|
87
|
+
note?: string;
|
|
55
88
|
style?: "google";
|
|
56
89
|
}
|
|
57
90
|
/**
|
|
58
|
-
* A component that creates
|
|
91
|
+
* A component that creates an ExceptionDoc block for custom exception classes.
|
|
59
92
|
*/
|
|
60
|
-
export declare function
|
|
61
|
-
export interface
|
|
93
|
+
export declare function ExceptionDoc(props: ExceptionDocProps): Children;
|
|
94
|
+
export interface AttributeDocProps {
|
|
95
|
+
name: Children;
|
|
96
|
+
type?: Children;
|
|
97
|
+
children?: Children;
|
|
98
|
+
style?: "google";
|
|
62
99
|
}
|
|
63
100
|
/**
|
|
64
|
-
* A component that creates
|
|
101
|
+
* A component that creates documentation for a single attribute.
|
|
102
|
+
* This can be used for both inline and block attribute documentation.
|
|
65
103
|
*/
|
|
66
|
-
export declare function
|
|
67
|
-
export interface
|
|
68
|
-
|
|
104
|
+
export declare function AttributeDoc(props: AttributeDocProps): Children;
|
|
105
|
+
export interface MethodDocProps {
|
|
106
|
+
description: Children[];
|
|
107
|
+
parameters?: ParameterDescriptor[];
|
|
108
|
+
returns?: string;
|
|
109
|
+
raises?: string[];
|
|
110
|
+
examples?: Children[];
|
|
111
|
+
seeAlso?: string[];
|
|
112
|
+
warning?: string;
|
|
113
|
+
deprecated?: string;
|
|
114
|
+
note?: string;
|
|
115
|
+
overrides?: string;
|
|
116
|
+
style?: "google";
|
|
69
117
|
}
|
|
70
118
|
/**
|
|
71
|
-
*
|
|
119
|
+
* A component that creates a MethodDoc block for class methods.
|
|
120
|
+
* Automatically adds a note about not including 'self' parameter if no custom note is provided.
|
|
72
121
|
*/
|
|
73
|
-
export declare function
|
|
122
|
+
export declare function MethodDoc(props: MethodDocProps): Children;
|
|
74
123
|
export interface PyDocProps {
|
|
75
124
|
children: Children;
|
|
76
125
|
}
|
|
@@ -79,6 +128,13 @@ export interface PyDocProps {
|
|
|
79
128
|
* linebreaks. This is useful for creating PyDoc comments with multiple paragraphs.
|
|
80
129
|
*/
|
|
81
130
|
export declare function PyDoc(props: PyDocProps): Children;
|
|
131
|
+
export interface PyDocExampleProps {
|
|
132
|
+
children: Children;
|
|
133
|
+
}
|
|
134
|
+
/**
|
|
135
|
+
* Create a PyDoc example, which is prepended by \>\>.
|
|
136
|
+
*/
|
|
137
|
+
export declare function PyDocExample(props: PyDocExampleProps): Children;
|
|
82
138
|
export interface SimpleCommentBlockProps {
|
|
83
139
|
children: Children;
|
|
84
140
|
}
|
|
@@ -87,4 +143,13 @@ export interface SimpleInlineCommentProps {
|
|
|
87
143
|
children: Children;
|
|
88
144
|
}
|
|
89
145
|
export declare function SimpleInlineComment(props: SimpleInlineCommentProps): Children;
|
|
146
|
+
export interface SimpleInlineCommentProps {
|
|
147
|
+
children: Children;
|
|
148
|
+
}
|
|
149
|
+
export declare function SimpleInlineMemberComment(props: SimpleInlineCommentProps): Children;
|
|
150
|
+
export interface GoogleStyleDocAttributeProps {
|
|
151
|
+
name: Children;
|
|
152
|
+
type?: Children;
|
|
153
|
+
children?: Children;
|
|
154
|
+
}
|
|
90
155
|
//# sourceMappingURL=PyDoc.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PyDoc.d.ts","sourceRoot":"","sources":["../../../src/components/PyDoc.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAC;AACtD,OAAO,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;
|
|
1
|
+
{"version":3,"file":"PyDoc.d.ts","sourceRoot":"","sources":["../../../src/components/PyDoc.tsx"],"names":[],"mappings":"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"}
|