(el)
| 8071 | } |
| 8072 | |
| 8073 | function processComponent (el) { |
| 8074 | var binding; |
| 8075 | if ((binding = getBindingAttr(el, 'is'))) { |
| 8076 | el.component = binding; |
| 8077 | } |
| 8078 | if (getAndRemoveAttr(el, 'inline-template') != null) { |
| 8079 | el.inlineTemplate = true; |
| 8080 | } |
| 8081 | } |
| 8082 | |
| 8083 | function processAttrs (el) { |
| 8084 | var list = el.attrsList; |
no test coverage detected