mirror of
https://github.com/github/codeql.git
synced 2026-05-06 06:05:19 +02:00
10 lines
148 B
TypeScript
10 lines
148 B
TypeScript
import * as dummy from 'dummy';
|
|
|
|
class InstanceField {
|
|
instanceField = foo();
|
|
}
|
|
|
|
class ParameterField {
|
|
constructor(public parameterField) {}
|
|
}
|