Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Kozzi11 committed Jul 26, 2017
1 parent 0ab3681 commit d012b60
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions source/std/experimental/xml/domimpl.d
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,9 @@ class DOMImplementation(DOMString, Alloc = shared(GCAllocator), ErrorHandler = b
{
override
{
/// Implementation of $(LINK2 ../dom/Node.ownerDocument, `std.experimental.xml.dom.Node.ownerDocument`).
@property Document ownerDocument() { return _ownerDocument; }

/// Implementation of $(LINK2 ../dom/Node.parentNode, `std.experimental.xml.dom.Node.parentNode`).
@property Node parentNode() { return _parentNode; }
/++
Expand All @@ -156,8 +159,6 @@ class DOMImplementation(DOMString, Alloc = shared(GCAllocator), ErrorHandler = b
@property Node previousSibling() { return _previousSibling; }
/// Implementation of $(LINK2 ../dom/Node.nextSibling, `std.experimental.xml.dom.Node.nextSibling`).
@property Node nextSibling() { return _nextSibling; }
/// Implementation of $(LINK2 ../dom/Node.ownerDocument, `std.experimental.xml.dom.Node.ownerDocument`).
@property Document ownerDocument() { return _ownerDocument; }

/++
+ Implementation of $(LINK2 ../dom/Node.isSameNode, `std.experimental.xml.dom.Node.isSameNode`).
Expand Down

0 comments on commit d012b60

Please sign in to comment.