(javaType: string)
| 1625 | } |
| 1626 | |
| 1627 | function javaClassLiteral(javaType: string): string { |
| 1628 | return javaType === "Void" ? "Void.class" : `${javaType}.class`; |
| 1629 | } |
| 1630 | |
| 1631 | function addWrapperResultImports(resultType: string, allImports: Set<string>, packageName: string): void { |
| 1632 | if (resultType === "Void") { |
no outgoing calls
no test coverage detected
searching dependent graphs…