Looking Back...

var square = (function (_super) {
    __extends(square, _super);
    function square() {
        return _super.call(this, 4) || this;
    }
    return square;
}(shape));
177-es5-ext-impl