Sebastian McKenzie 5bad458b09 Fix tests
2014-12-05 23:05:20 +11:00

20 lines
302 B
JavaScript

"use strict";
var BaseView = function BaseView() {
this.autoRender = true;
};
var BaseView = function () {
this.autoRender = true;
};
var BaseView = (function () {
var _class2 = function () {};
_class2.prototype.foo = function () {
this.autoRender = true;
};
return _class2;
})();