()
| 414 | |
| 415 | // mark template ref on v-for |
| 416 | const pushRefVForMarker = () => { |
| 417 | if (context.scopes.vFor > 0) { |
| 418 | properties.push( |
| 419 | createObjectProperty( |
| 420 | createSimpleExpression('ref_for', true), |
| 421 | createSimpleExpression('true'), |
| 422 | ), |
| 423 | ) |
| 424 | } |
| 425 | } |
| 426 | |
| 427 | const analyzePatchFlag = ({ key, value }: Property) => { |
| 428 | if (isStaticExp(key)) { |
no test coverage detected