Accepted baselines.

This commit is contained in:
Daniel Rosenwasser 2017-08-10 08:28:43 -07:00
parent 6ef27a4e1e
commit 66e2a0bb94

View File

@ -0,0 +1,10 @@
class C {
constructor() {
this.foo = 10;
}
}
C.bar = 20;
var C;
(function (C) {
C.x = 10;
})(C || (C = {}));