Classes cleanup (#7737)

* Cleanup

* Move verifyConstructorVisitor out of closure
This commit is contained in:
Justin Ridgewell
2018-04-17 17:52:43 -04:00
committed by GitHub
parent 341bdab90c
commit 21c7ff3f37
8 changed files with 74 additions and 126 deletions

View File

@@ -14,9 +14,9 @@ function _getPrototypeOf(o) { _getPrototypeOf = Object.getPrototypeOf || functio
foo = _obj = {
bar() {
var _ref;
var _super$baz;
return _ref = _get(_getPrototypeOf(_obj), "baz", this), _set(_getPrototypeOf(_obj), "baz", Math.pow(_ref, 12), this, false);
return _super$baz = _get(_getPrototypeOf(_obj), "baz", this), _set(_getPrototypeOf(_obj), "baz", Math.pow(_super$baz, 12), this, false);
}
};