( tag, data, children, text, elm, context, componentOptions )
| 1549 | /* */ |
| 1550 | |
| 1551 | var VNode = function VNode ( |
| 1552 | tag, |
| 1553 | data, |
| 1554 | children, |
| 1555 | text, |
| 1556 | elm, |
| 1557 | context, |
| 1558 | componentOptions |
| 1559 | ) { |
| 1560 | this.tag = tag; |
| 1561 | this.data = data; |
| 1562 | this.children = children; |
| 1563 | this.text = text; |
| 1564 | this.elm = elm; |
| 1565 | this.ns = undefined; |
| 1566 | this.context = context; |
| 1567 | this.functionalContext = undefined; |
| 1568 | this.key = data && data.key; |
| 1569 | this.componentOptions = componentOptions; |
| 1570 | this.componentInstance = undefined; |
| 1571 | this.parent = undefined; |
| 1572 | this.raw = false; |
| 1573 | this.isStatic = false; |
| 1574 | this.isRootInsert = true; |
| 1575 | this.isComment = false; |
| 1576 | this.isCloned = false; |
| 1577 | this.isOnce = false; |
| 1578 | }; |
| 1579 | |
| 1580 | var prototypeAccessors = { child: {} }; |
| 1581 |
nothing calls this directly
no outgoing calls
no test coverage detected