Update baseline (#37049)

This commit is contained in:
Nathan Shively-Sanders
2020-02-26 10:28:22 -08:00
committed by GitHub
parent af901ba911
commit 3d63401b20
@@ -11,10 +11,13 @@ class Foo {
//// [thisInClassBodyStaticESNext.js]
// all are allowed with es-compliant class field emit
class Foo {
x = this;
static t = this;
static at = () => this;
static ft = function () { return this; };
static mt() { return this; }
}
const Foo = /** @class */ (() => {
class Foo {
x = this;
static t = this;
static at = () => this;
static ft = function () { return this; };
static mt() { return this; }
}
return Foo;
})();