* Renders a type without generic arguments * * Necessary because of type erasure; the compiler * will not let you check `foo instanceof Map `, * and you must instead check `foo instanceof Map`.
(type: spec.TypeReference)
| 3001 | * and you must instead check `foo instanceof Map`. |
| 3002 | */ |
| 3003 | private toJavaTypeNoGenerics(type: spec.TypeReference): string { |
| 3004 | return forceSingleType(this.toJavaTypes(type)).typeSymbol; |
| 3005 | } |
| 3006 | |
| 3007 | /** |
| 3008 | * Return the jsii object that represents this native type |
no test coverage detected