Skip to content

Commit 1ffe92f

Browse files
committed
astFull screenshot + fixmyts sample
1 parent 67df859 commit 1ffe92f

File tree

4 files changed

+41
-0
lines changed

4 files changed

+41
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
var Test = (function () {
2+
function Test() {
3+
this.something = 123;
4+
var foo = new OtherTest();
5+
foo.something = 123;
6+
}
7+
return Test;
8+
})();
9+
var OtherTest = (function () {
10+
function OtherTest() {
11+
}
12+
return OtherTest;
13+
})();
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
class Test {
2+
constructor() {
3+
this.something = 123;
4+
var foo = new OtherTest();
5+
foo.something = 123;
6+
}
7+
}
8+
9+
class OtherTest {
10+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"version": "1.4.1",
3+
"compilerOptions": {
4+
"target": "es5",
5+
"module": "commonjs",
6+
"declaration": false,
7+
"noImplicitAny": false,
8+
"removeComments": true,
9+
"noLib": false
10+
},
11+
"filesGlob": [
12+
"./**/*.ts",
13+
"!./node_modules/**/*.ts"
14+
],
15+
"files": [
16+
"./classAddMember.ts"
17+
]
18+
}

screens/astFull.png

28.1 KB
Loading

0 commit comments

Comments
 (0)