@alloy-js/go 0.3.0-dev.3 → 0.3.1-dev.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 +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog - @alloy-js/go
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- [#356](https://github.com/alloy-framework/alloy/pull/356) Include debugging information for symbols.
|
|
8
|
+
- [#368](https://github.com/alloy-framework/alloy/pull/368) Ship dev sources in package for debugging. Use node's --condition="development" flag to use this build.
|
|
9
|
+
|
|
10
|
+
|
|
3
11
|
## 0.2.0
|
|
4
12
|
|
|
5
13
|
### Features
|