More progress, update to use 1.9 scopes

This commit is contained in:
Daniel Imms
2017-01-29 23:24:59 -08:00
parent 300020bf47
commit 197cdd4c4e
5 changed files with 78 additions and 11 deletions

View File

@@ -1,13 +1,27 @@
import { a } from 'some-file';
/**
* Comment
*/
class Example {
private static readonly _a: string = 'foo';
private _c: boolean = true;
private get a() {
return this._a;
return Example._a;
}
public b(arg1: number, arg2: boolean): string {
return `${arg1} ${arg2}`;
}
}
function someFunction(arg1, arg2) {
}
var a = {
a: 1,
b: 2,
"c": true
}