(el)
| 15198 | |
| 15199 | //如果for属性存在或者tag等于template或者是slot 则问真 |
| 15200 | function needsNormalization(el) { |
| 15201 | return el.for !== undefined || el.tag === 'template' || el.tag === 'slot' |
| 15202 | } |
| 15203 | |
| 15204 | //根据node.type 属性不同调用不同的方法 |
| 15205 | function genNode(node, state) { |
no outgoing calls
no test coverage detected