@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.
Files changed (103) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/tsconfig.tsbuildinfo +1 -1
  3. package/docs/api/components/FunctionDeclaration.md +53 -0
  4. package/docs/api/components/FunctionParameter.md +40 -0
  5. package/docs/api/components/FunctionParameters.md +29 -0
  6. package/docs/api/components/FunctionReceiver.md +38 -0
  7. package/docs/api/components/ImportStatements.md +25 -0
  8. package/docs/api/components/InterfaceDeclaration.md +54 -0
  9. package/docs/api/components/InterfaceEmbed.md +29 -0
  10. package/docs/api/components/InterfaceFunction.md +41 -0
  11. package/docs/api/components/InterfaceTypeDeclaration.md +56 -0
  12. package/docs/api/components/LineComment.md +29 -0
  13. package/docs/api/components/ModuleDirectory.md +29 -0
  14. package/docs/api/components/Name.md +19 -0
  15. package/docs/api/components/Pointer.md +29 -0
  16. package/docs/api/components/Reference.md +25 -0
  17. package/docs/api/components/SingleImportStatement.md +35 -0
  18. package/docs/api/components/SourceDirectory.md +27 -0
  19. package/docs/api/components/SourceFile.md +44 -0
  20. package/docs/api/components/StructDeclaration.md +51 -0
  21. package/docs/api/components/StructEmbed.md +29 -0
  22. package/docs/api/components/StructMember.md +41 -0
  23. package/docs/api/components/StructTypeDeclaration.md +56 -0
  24. package/docs/api/components/TypeConstraint.md +28 -0
  25. package/docs/api/components/TypeDeclaration.md +47 -0
  26. package/docs/api/components/TypeDeclarationGroup.md +27 -0
  27. package/docs/api/components/TypeParameter.md +37 -0
  28. package/docs/api/components/TypeParameters.md +25 -0
  29. package/docs/api/components/VariableDeclaration.md +44 -0
  30. package/docs/api/components/VariableDeclarationGroup.md +28 -0
  31. package/docs/api/components/index.md +30 -0
  32. package/docs/api/contexts/TypeDeclarationGroup-context.md +17 -0
  33. package/docs/api/contexts/VariableDeclarationGroup-context.md +18 -0
  34. package/docs/api/contexts/index.md +4 -0
  35. package/docs/api/functions/createAnonymousTypeSymbol.md +25 -0
  36. package/docs/api/functions/createFunctionScope.md +26 -0
  37. package/docs/api/functions/createFunctionSymbol.md +35 -0
  38. package/docs/api/functions/createGoModuleScope.md +18 -0
  39. package/docs/api/functions/createGoNamePolicy.md +17 -0
  40. package/docs/api/functions/createGoPackageScope.md +18 -0
  41. package/docs/api/functions/createInterfaceMemberSymbol.md +25 -0
  42. package/docs/api/functions/createModule.md +20 -0
  43. package/docs/api/functions/createNamedTypeScope.md +27 -0
  44. package/docs/api/functions/createNestedStructSymbol.md +26 -0
  45. package/docs/api/functions/createPackageSymbol.md +19 -0
  46. package/docs/api/functions/createParameterSymbol.md +36 -0
  47. package/docs/api/functions/createPropertySymbol.md +34 -0
  48. package/docs/api/functions/createStructMemberSymbol.md +25 -0
  49. package/docs/api/functions/createTypeParameterSymbol.md +25 -0
  50. package/docs/api/functions/createTypeSymbol.md +26 -0
  51. package/docs/api/functions/createVariableSymbol.md +34 -0
  52. package/docs/api/functions/index.md +29 -0
  53. package/docs/api/functions/ref.md +18 -0
  54. package/docs/api/functions/useEnclosingPackageScope.md +17 -0
  55. package/docs/api/functions/useFuncScope.md +17 -0
  56. package/docs/api/functions/useGoNamePolicy.md +17 -0
  57. package/docs/api/functions/useGoScope.md +17 -0
  58. package/docs/api/functions/useLexicalScope.md +17 -0
  59. package/docs/api/functions/useModule.md +17 -0
  60. package/docs/api/functions/useNamedTypeScope.md +17 -0
  61. package/docs/api/functions/usePackage.md +17 -0
  62. package/docs/api/functions/useSourceFileScope.md +17 -0
  63. package/docs/api/index.md +7 -0
  64. package/docs/api/types/CreateTypeParameterSymbolOptions.md +9 -0
  65. package/docs/api/types/Descriptor.md +5 -0
  66. package/docs/api/types/EmbedDescriptor.md +9 -0
  67. package/docs/api/types/FieldDescriptor.md +9 -0
  68. package/docs/api/types/FunctionDescriptor.md +9 -0
  69. package/docs/api/types/FunctionSymbol.md +13 -0
  70. package/docs/api/types/GoElements.md +5 -0
  71. package/docs/api/types/GoFunctionScope.md +12 -0
  72. package/docs/api/types/GoLexicalScope.md +11 -0
  73. package/docs/api/types/GoModuleScope.md +10 -0
  74. package/docs/api/types/GoNamedTypeScope.md +16 -0
  75. package/docs/api/types/GoPackageScope.md +10 -0
  76. package/docs/api/types/GoScope.md +10 -0
  77. package/docs/api/types/GoSourceFileScope.md +13 -0
  78. package/docs/api/types/GoSymbol.md +17 -0
  79. package/docs/api/types/GoSymbolKinds.md +5 -0
  80. package/docs/api/types/GoSymbolOptions.md +10 -0
  81. package/docs/api/types/ImportRecords.md +5 -0
  82. package/docs/api/types/InterfaceDescriptor.md +9 -0
  83. package/docs/api/types/LibraryFrom.md +5 -0
  84. package/docs/api/types/MemberDescriptor.md +8 -0
  85. package/docs/api/types/MethodDescriptor.md +9 -0
  86. package/docs/api/types/NamedTypeDescriptor.md +8 -0
  87. package/docs/api/types/NamedTypeSymbol.md +17 -0
  88. package/docs/api/types/NamedTypeSymbolKind.md +5 -0
  89. package/docs/api/types/NamedTypeSymbolOptions.md +9 -0
  90. package/docs/api/types/NamedTypeTypeKind.md +5 -0
  91. package/docs/api/types/PackageDescriptor.md +12 -0
  92. package/docs/api/types/PackageSymbol.md +15 -0
  93. package/docs/api/types/PackageSymbolOptions.md +10 -0
  94. package/docs/api/types/ResolveDescriptor.md +7 -0
  95. package/docs/api/types/SourceFileHeaderProps.md +9 -0
  96. package/docs/api/types/StrictDescriptor.md +5 -0
  97. package/docs/api/types/StructDescriptor.md +9 -0
  98. package/docs/api/types/TypeDescriptor.md +9 -0
  99. package/docs/api/types/VariableDescriptor.md +9 -0
  100. package/docs/api/types/index.md +38 -0
  101. package/docs/api/variables/index.md +3 -0
  102. package/docs/api/variables/std.md +2463 -0
  103. 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-dev.3",
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": {