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