(el)
| 9994 | } |
| 9995 | |
| 9996 | function processFor (el) { |
| 9997 | var exp; |
| 9998 | if ((exp = getAndRemoveAttr(el, 'v-for'))) { |
| 9999 | var res = parseFor(exp); |
| 10000 | if (res) { |
| 10001 | extend(el, res); |
| 10002 | } else { |
| 10003 | warn$2( |
| 10004 | ("Invalid v-for expression: " + exp), |
| 10005 | el.rawAttrsMap['v-for'] |
| 10006 | ); |
| 10007 | } |
| 10008 | } |
| 10009 | } |
| 10010 | |
| 10011 | |
| 10012 |
no test coverage detected