(lines: string[], goName: string, ctx: GoCodegenCtx, indent = "\t")
| 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); |
| 243 | } |
| 244 | |
| 245 | /** |
| 246 | * Emit `Deprecated:` / `Experimental:` / `Internal:` doc comments above a Go |
no test coverage detected
searching dependent graphs…