(Map<CachedClass, Map<String, MetaProperty>> map, CachedClass key)
| 185 | protected final MetaMethodIndex metaMethodIndex; |
| 186 | |
| 187 | private static Map<String, MetaProperty> subMap(Map<CachedClass, Map<String, MetaProperty>> map, CachedClass key) { |
| 188 | return map.computeIfAbsent(key, k -> new LinkedHashMap<>()); |
| 189 | } |
| 190 | private final Map<CachedClass, Map<String, MetaProperty>> classPropertyIndexForSuper = new ConcurrentHashMap<>(); |
| 191 | private final Map<CachedClass, Map<String, MetaProperty>> classPropertyIndex = new ConcurrentHashMap<>(); |
| 192 | private final Map<String, MetaProperty> staticPropertyIndex = new LinkedHashMap<>(); |
no test coverage detected