(pkg *types.Package)
| 1382 | } |
| 1383 | |
| 1384 | func (g *JavaGen) jniClassSigPrefix(pkg *types.Package) string { |
| 1385 | return strings.Replace(g.javaPkgName(pkg), ".", "/", -1) + "/" |
| 1386 | } |
| 1387 | |
| 1388 | func (g *JavaGen) jniSigType(T types.Type) string { |
| 1389 | if isErrorType(T) { |
no test coverage detected