mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
12 lines
133 B
TypeScript
12 lines
133 B
TypeScript
|
|
export class D {
|
|
static bar = 2;
|
|
static baz = D.bar + 1;
|
|
}
|
|
D.foo = 3;
|
|
|
|
let obj = {};
|
|
obj.foo = 4;
|
|
|
|
function foo() { return D; }
|