(el)
| 7948 | } |
| 7949 | |
| 7950 | function processKey (el) { |
| 7951 | var exp = getBindingAttr(el, 'key'); |
| 7952 | if (exp) { |
| 7953 | if (process.env.NODE_ENV !== 'production' && el.tag === 'template') { |
| 7954 | warn$2("<template> cannot be keyed. Place the key on real elements instead."); |
| 7955 | } |
| 7956 | el.key = exp; |
| 7957 | } |
| 7958 | } |
| 7959 | |
| 7960 | function processRef (el) { |
| 7961 | var ref = getBindingAttr(el, 'ref'); |
no test coverage detected