You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Build & publishes experimental Go bindings for CDK8s under `github.com/awslabs/cdk8s-go/cdk8s` and `github.com/awslabs/cdk8s-go/cdk8splus17`.
This required the following changes:
- Add `publishToGo` definitions to `cdk8s` and `cdk8s-plus-17`
- Upgrading constructs to 3.3.5 (which is available in go)
- Remove the use of `_` as a parameter name due to aws/jsii#2530Resolvesaws/jsii#2444Resolvesaws/jsii#2454
It is common in TypeScript to use `_` as an argument name if the argument is not used. This is an invalid name in Go, so replace it with `_arg`.
Fixes#2530
Comments on closed issues are hard for our team to see.
If you need more assistance, please either tag a team member or open a new issue that references this one.
If you wish to keep having a conversation with other community members under this issue feel free to do so.
🐛 Bug Report
Affected Languages
Golang
TypeScript
orJavascript
Python
Java
C#
,F#
, ...)General Information
What is the problem?
It is a common practice in jsii/TypeScript to use
_
as a parameter name if the parameter is not used in a method implementation:The resulting go code does not compile:
The text was updated successfully, but these errors were encountered: