mirror of https://github.com/adamdruppe/arsd.git
another invariant fix for endless loop
This commit is contained in:
parent
8255d3c2d0
commit
e0f441420e
2
dom.d
2
dom.d
|
@ -2987,7 +2987,7 @@ class Element {
|
|||
debug foreach(child; children) {
|
||||
// assert(parentNode !is null);
|
||||
assert(child !is null);
|
||||
assert(child.parentNode is this, format("%s is not a parent of %s (it thought it was %s)", tagName, child.tagName, child.parentNode is null ? "null" : child.parentNode.tagName));
|
||||
// assert(child.parentNode is this, format("%s is not a parent of %s (it thought it was %s)", tagName, child.tagName, child.parentNode is null ? "null" : child.parentNode.tagName));
|
||||
assert(child !is this);
|
||||
//assert(child !is parentNode);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue