(text)
| 1156 | |
| 1157 | //创建一个节点 空的vnode |
| 1158 | var createEmptyVNode = function (text) { |
| 1159 | if (text === void 0) text = ''; |
| 1160 | |
| 1161 | var node = new VNode(); |
| 1162 | node.text = text; |
| 1163 | node.isComment = true; |
| 1164 | return node |
| 1165 | }; |
| 1166 | |
| 1167 | //创建一个文本节点 |
| 1168 | function createTextVNode(val) { |
no outgoing calls
no test coverage detected