JS: address comments and support TrackedNode

This commit is contained in:
Asger F
2019-01-16 10:59:43 +00:00
parent 6d1eab8a4b
commit 9aaea40719
4 changed files with 37 additions and 21 deletions

View File

@@ -0,0 +1,12 @@
import * as dummy from 'dummy';
class C {
constructor() {
this.field = new Object();
}
}
function test() {
let x = new C().field;
foo(x);
}