@alloy-js/go 0.3.0-dev.3 → 0.3.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/CHANGELOG.md +8 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/docs/api/components/FunctionDeclaration.md +53 -0
- package/docs/api/components/FunctionParameter.md +40 -0
- package/docs/api/components/FunctionParameters.md +29 -0
- package/docs/api/components/FunctionReceiver.md +38 -0
- package/docs/api/components/ImportStatements.md +25 -0
- package/docs/api/components/InterfaceDeclaration.md +54 -0
- package/docs/api/components/InterfaceEmbed.md +29 -0
- package/docs/api/components/InterfaceFunction.md +41 -0
- package/docs/api/components/InterfaceTypeDeclaration.md +56 -0
- package/docs/api/components/LineComment.md +29 -0
- package/docs/api/components/ModuleDirectory.md +29 -0
- package/docs/api/components/Name.md +19 -0
- package/docs/api/components/Pointer.md +29 -0
- package/docs/api/components/Reference.md +25 -0
- package/docs/api/components/SingleImportStatement.md +35 -0
- package/docs/api/components/SourceDirectory.md +27 -0
- package/docs/api/components/SourceFile.md +44 -0
- package/docs/api/components/StructDeclaration.md +51 -0
- package/docs/api/components/StructEmbed.md +29 -0
- package/docs/api/components/StructMember.md +41 -0
- package/docs/api/components/StructTypeDeclaration.md +56 -0
- package/docs/api/components/TypeConstraint.md +28 -0
- package/docs/api/components/TypeDeclaration.md +47 -0
- package/docs/api/components/TypeDeclarationGroup.md +27 -0
- package/docs/api/components/TypeParameter.md +37 -0
- package/docs/api/components/TypeParameters.md +25 -0
- package/docs/api/components/VariableDeclaration.md +44 -0
- package/docs/api/components/VariableDeclarationGroup.md +28 -0
- package/docs/api/components/index.md +30 -0
- package/docs/api/contexts/TypeDeclarationGroup-context.md +17 -0
- package/docs/api/contexts/VariableDeclarationGroup-context.md +18 -0
- package/docs/api/contexts/index.md +4 -0
- package/docs/api/functions/createAnonymousTypeSymbol.md +25 -0
- package/docs/api/functions/createFunctionScope.md +26 -0
- package/docs/api/functions/createFunctionSymbol.md +35 -0
- package/docs/api/functions/createGoModuleScope.md +18 -0
- package/docs/api/functions/createGoNamePolicy.md +17 -0
- package/docs/api/functions/createGoPackageScope.md +18 -0
- package/docs/api/functions/createInterfaceMemberSymbol.md +25 -0
- package/docs/api/functions/createModule.md +20 -0
- package/docs/api/functions/createNamedTypeScope.md +27 -0
- package/docs/api/functions/createNestedStructSymbol.md +26 -0
- package/docs/api/functions/createPackageSymbol.md +19 -0
- package/docs/api/functions/createParameterSymbol.md +36 -0
- package/docs/api/functions/createPropertySymbol.md +34 -0
- package/docs/api/functions/createStructMemberSymbol.md +25 -0
- package/docs/api/functions/createTypeParameterSymbol.md +25 -0
- package/docs/api/functions/createTypeSymbol.md +26 -0
- package/docs/api/functions/createVariableSymbol.md +34 -0
- package/docs/api/functions/index.md +29 -0
- package/docs/api/functions/ref.md +18 -0
- package/docs/api/functions/useEnclosingPackageScope.md +17 -0
- package/docs/api/functions/useFuncScope.md +17 -0
- package/docs/api/functions/useGoNamePolicy.md +17 -0
- package/docs/api/functions/useGoScope.md +17 -0
- package/docs/api/functions/useLexicalScope.md +17 -0
- package/docs/api/functions/useModule.md +17 -0
- package/docs/api/functions/useNamedTypeScope.md +17 -0
- package/docs/api/functions/usePackage.md +17 -0
- package/docs/api/functions/useSourceFileScope.md +17 -0
- package/docs/api/index.md +7 -0
- package/docs/api/types/CreateTypeParameterSymbolOptions.md +9 -0
- package/docs/api/types/Descriptor.md +5 -0
- package/docs/api/types/EmbedDescriptor.md +9 -0
- package/docs/api/types/FieldDescriptor.md +9 -0
- package/docs/api/types/FunctionDescriptor.md +9 -0
- package/docs/api/types/FunctionSymbol.md +13 -0
- package/docs/api/types/GoElements.md +5 -0
- package/docs/api/types/GoFunctionScope.md +12 -0
- package/docs/api/types/GoLexicalScope.md +11 -0
- package/docs/api/types/GoModuleScope.md +10 -0
- package/docs/api/types/GoNamedTypeScope.md +16 -0
- package/docs/api/types/GoPackageScope.md +10 -0
- package/docs/api/types/GoScope.md +10 -0
- package/docs/api/types/GoSourceFileScope.md +13 -0
- package/docs/api/types/GoSymbol.md +17 -0
- package/docs/api/types/GoSymbolKinds.md +5 -0
- package/docs/api/types/GoSymbolOptions.md +10 -0
- package/docs/api/types/ImportRecords.md +5 -0
- package/docs/api/types/InterfaceDescriptor.md +9 -0
- package/docs/api/types/LibraryFrom.md +5 -0
- package/docs/api/types/MemberDescriptor.md +8 -0
- package/docs/api/types/MethodDescriptor.md +9 -0
- package/docs/api/types/NamedTypeDescriptor.md +8 -0
- package/docs/api/types/NamedTypeSymbol.md +17 -0
- package/docs/api/types/NamedTypeSymbolKind.md +5 -0
- package/docs/api/types/NamedTypeSymbolOptions.md +9 -0
- package/docs/api/types/NamedTypeTypeKind.md +5 -0
- package/docs/api/types/PackageDescriptor.md +12 -0
- package/docs/api/types/PackageSymbol.md +15 -0
- package/docs/api/types/PackageSymbolOptions.md +10 -0
- package/docs/api/types/ResolveDescriptor.md +7 -0
- package/docs/api/types/SourceFileHeaderProps.md +9 -0
- package/docs/api/types/StrictDescriptor.md +5 -0
- package/docs/api/types/StructDescriptor.md +9 -0
- package/docs/api/types/TypeDescriptor.md +9 -0
- package/docs/api/types/VariableDescriptor.md +9 -0
- package/docs/api/types/index.md +38 -0
- package/docs/api/variables/index.md +3 -0
- package/docs/api/variables/std.md +2463 -0
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alloy-js/go",
|
|
3
|
-
"version": "0.3.0
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Go bindings for Alloy",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -27,18 +27,18 @@
|
|
|
27
27
|
"author": "",
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@alloy-js/core": "~0.22.0 || >= 0.23.0-dev.12",
|
|
31
30
|
"change-case": "^5.4.4",
|
|
32
|
-
"pathe": "^2.0.3"
|
|
31
|
+
"pathe": "^2.0.3",
|
|
32
|
+
"@alloy-js/core": "~0.23.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@alloy-js/cli": "~0.22.0 || >= 0.23.0-dev.4",
|
|
36
|
-
"@alloy-js/rollup-plugin": "~0.1.0 || >= 0.1.1-dev.1",
|
|
37
35
|
"@microsoft/api-extractor": "~7.52.8",
|
|
38
36
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
39
37
|
"concurrently": "^9.2.0",
|
|
40
38
|
"typescript": "^5.8.3",
|
|
41
|
-
"vitest": "3.2.4"
|
|
39
|
+
"vitest": "3.2.4",
|
|
40
|
+
"@alloy-js/rollup-plugin": "~0.1.1",
|
|
41
|
+
"@alloy-js/cli": "~0.23.0"
|
|
42
42
|
},
|
|
43
43
|
"type": "module",
|
|
44
44
|
"scripts": {
|