(val)
| 1166 | |
| 1167 | //创建一个文本节点 |
| 1168 | function createTextVNode(val) { |
| 1169 | |
| 1170 | return new VNode( |
| 1171 | undefined, |
| 1172 | undefined, |
| 1173 | undefined, |
| 1174 | String(val) |
| 1175 | ) |
| 1176 | } |
| 1177 | |
| 1178 | // optimized shallow clone |
| 1179 | // used for static nodes and slot nodes because they may be reused across |
no outgoing calls
no test coverage detected