(el)
| 10252 | } |
| 10253 | |
| 10254 | function processComponent (el) { |
| 10255 | var binding; |
| 10256 | if ((binding = getBindingAttr(el, 'is'))) { |
| 10257 | el.component = binding; |
| 10258 | } |
| 10259 | if (getAndRemoveAttr(el, 'inline-template') != null) { |
| 10260 | el.inlineTemplate = true; |
| 10261 | } |
| 10262 | } |
| 10263 | |
| 10264 | function processAttrs (el) { |
| 10265 | var list = el.attrsList; |
no test coverage detected