some contracts

This commit is contained in:
Adam D. Ruppe 2011-08-25 11:44:31 -04:00
parent 5e2c7d9f57
commit 1c9dc91f00
1 changed files with 9 additions and 1 deletions

10
dom.d
View File

@ -496,7 +496,15 @@ class Element {
return e;
}
Element addChild(string tagName, Html innerHtml) {
Element addChild(string tagName, Html innerHtml)
in {
assert(parentDocument !is null);
}
out(ret) {
assert(ret !is null);
assert(ret.parentNode is this);
}
body {
auto e = parentDocument.createElement(tagName);
this.appendChild(e);
e.innerHTML = innerHtml.source;