(el)
| 7942 | } |
| 7943 | |
| 7944 | function processKey (el) { |
| 7945 | var exp = getBindingAttr(el, 'key'); |
| 7946 | if (exp) { |
| 7947 | if ("development" !== 'production' && el.tag === 'template') { |
| 7948 | warn$2("<template> cannot be keyed. Place the key on real elements instead."); |
| 7949 | } |
| 7950 | el.key = exp; |
| 7951 | } |
| 7952 | } |
| 7953 | |
| 7954 | function processRef (el) { |
| 7955 | var ref = getBindingAttr(el, 'ref'); |
no test coverage detected