(nativeNode: Element)
| 135 | */ |
| 136 | export class DebugElement extends DebugNode { |
| 137 | constructor(nativeNode: Element) { |
| 138 | ngDevMode && assertDomNode(nativeNode); |
| 139 | super(nativeNode); |
| 140 | } |
| 141 | |
| 142 | /** |
| 143 | * The underlying DOM element at the root of the component. |
nothing calls this directly
no test coverage detected