(lines: string[], goName: string, ctx: GoCodegenCtx, indent = "\t")
| 235 | } |
| 236 | |
| 237 | function pushGoInternalPropertyComment(lines: string[], goName: string, ctx: GoCodegenCtx, indent = "\t"): void { |
| 238 | pushGoCommentForContext(lines, `Internal: ${goName} is part of the SDK's internal API surface and is not intended for external use.`, ctx, indent); |
| 239 | } |
| 240 | |
| 241 | function pushGoExperimentalPropertyComment(lines: string[], goName: string, ctx: GoCodegenCtx, indent = "\t"): void { |
| 242 | pushGoCommentForContext(lines, `Experimental: ${goName} is part of an experimental API and may change or be removed.`, ctx, indent); |
no test coverage detected
searching dependent graphs…