More progress, update to use 1.9 scopes
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user