(exp, isVNode = false, inVOnce = false)
| 301 | return identifier |
| 302 | }, |
| 303 | cache(exp, isVNode = false, inVOnce = false) { |
| 304 | const cacheExp = createCacheExpression( |
| 305 | context.cached.length, |
| 306 | exp, |
| 307 | isVNode, |
| 308 | inVOnce, |
| 309 | ) |
| 310 | context.cached.push(cacheExp) |
| 311 | return cacheExp |
| 312 | }, |
| 313 | } |
| 314 | |
| 315 | if (__COMPAT__) { |
nothing calls this directly
no test coverage detected