mirror of https://github.com/adamdruppe/arsd.git
Merge pull request #254 from NotMichaelChen/dom-unreachable-statement
Fix unreachable statement
This commit is contained in:
commit
4f9d5f1f37
1
dom.d
1
dom.d
|
@ -808,7 +808,6 @@ class Document : FileResource {
|
||||||
parseError("bad markup - improperly placed <");
|
parseError("bad markup - improperly placed <");
|
||||||
else
|
else
|
||||||
return Ele(0, TextNode.fromUndecodedString(this, "<"), null);
|
return Ele(0, TextNode.fromUndecodedString(this, "<"), null);
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
|
|
||||||
if(!strict) {
|
if(!strict) {
|
||||||
|
|
Loading…
Reference in New Issue