(Class c)
| 7927 | } |
| 7928 | |
| 7929 | static Type getType(Class c){ |
| 7930 | String descriptor = Type.getType(c).getDescriptor(); |
| 7931 | if(descriptor.startsWith("L")) |
| 7932 | descriptor = "L" + destubClassName(descriptor.substring(1)); |
| 7933 | return Type.getType(descriptor); |
| 7934 | } |
| 7935 | |
| 7936 | static Object resolve(Symbol sym, boolean allowPrivate) { |
| 7937 | return resolveIn(currentNS(), sym, allowPrivate); |
no test coverage detected