auto docBody = document.body;
// corresponding method (will not compile due to body being a keyword)
@property auto body() { // simplified code return this.getElementByTagName("body"); }
auto docBody = document.body;
// corresponding method (will not compile due to body being a keyword)
@property auto body() { // simplified code return this.getElementByTagName("body"); }