* Declaration loader with caching
(prop)
| 159 | * Declaration loader with caching |
| 160 | */ |
| 161 | decl(prop) { |
| 162 | if (!declsCache.has(prop)) { |
| 163 | declsCache.set(prop, Declaration.load(prop)) |
| 164 | } |
| 165 | |
| 166 | return declsCache.get(prop) |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * Group declaration by unprefixed property to check them |
no test coverage detected