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