(lines: string[], name: string, indent = "")
| 227 | } |
| 228 | |
| 229 | function pushGoExperimentalSubApiComment(lines: string[], name: string, indent = ""): void { |
| 230 | pushGoComment(lines, `Experimental: ${name} returns experimental APIs that may change or be removed.`, indent); |
| 231 | } |
| 232 | |
| 233 | function pushGoExperimentalMethodComment(lines: string[], methodName: string, indent = ""): void { |
| 234 | pushGoComment(lines, `Experimental: ${methodName} is an experimental API and may change or be removed in future versions.`, indent); |
no test coverage detected
searching dependent graphs…