(lines: string[], constName: string, indent = "")
| 219 | } |
| 220 | |
| 221 | function pushGoExperimentalEventComment(lines: string[], constName: string, indent = ""): void { |
| 222 | pushGoComment(lines, `Experimental: ${constName} identifies an experimental event that may change or be removed.`, 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); |
no test coverage detected
searching dependent graphs…