(typeName: string)
| 118 | } |
| 119 | |
| 120 | function toJavaClassName(typeName: string): string { |
| 121 | return fixBrandCasing(typeName.split(/[._]/).map((p) => p.charAt(0).toUpperCase() + p.slice(1)).join("")); |
| 122 | } |
| 123 | |
| 124 | /** Java reserved keywords and Object method names that cannot be used as record component names. */ |
| 125 | const JAVA_RESERVED_IDENTIFIERS = new Set([ |
no test coverage detected
searching dependent graphs…