FuncSig uniquely identifies a Java Func.
| 98 | |
| 99 | // FuncSig uniquely identifies a Java Func. |
| 100 | type FuncSig struct { |
| 101 | Name string |
| 102 | // The method descriptor, in JNI format. |
| 103 | Desc string |
| 104 | } |
| 105 | |
| 106 | // Var is a Java member variable. |
| 107 | type Var struct { |
nothing calls this directly
no outgoing calls
no test coverage detected