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