(indent = "")
| 499 | const STRING_ENUM_RESERVED_MEMBER_NAMES = new Set(["Value", "Equals", "GetHashCode", "ToString", "Converter"]); |
| 500 | |
| 501 | function experimentalAttribute(indent = ""): string { |
| 502 | return `${indent}${EXPERIMENTAL_ATTRIBUTE}`; |
| 503 | } |
| 504 | |
| 505 | function pushExperimentalAttribute(lines: string[], indent = ""): void { |
| 506 | lines.push(experimentalAttribute(indent)); |
no outgoing calls
no test coverage detected
searching dependent graphs…