(lines: string[], name: string, indent = "")
| 223 | } |
| 224 | |
| 225 | function pushGoExperimentalApiComment(lines: string[], name: string, indent = ""): void { |
| 226 | pushGoComment(lines, `Experimental: ${name} contains experimental APIs that may change or be removed.`, 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); |
no test coverage detected
searching dependent graphs…