var Element = (function () {
    function Element(name, body) {
        this.name = name;
        this.body = body;
    }