(Object dispatchVal)
| 142 | } |
| 143 | |
| 144 | public IFn getMethod(Object dispatchVal) { |
| 145 | if(cachedHierarchy != hierarchy.deref()) |
| 146 | resetCache(); |
| 147 | IFn targetFn = (IFn) methodCache.valAt(dispatchVal); |
| 148 | if(targetFn != null) |
| 149 | return targetFn; |
| 150 | return findAndCacheBestMethod(dispatchVal); |
| 151 | } |
| 152 | |
| 153 | private IFn getFn(Object dispatchVal) { |
| 154 | IFn targetFn = getMethod(dispatchVal); |
no test coverage detected