1
0
mirror of https://github.com/fluencelabs/assemblyscript synced 2025-05-23 20:51:26 +00:00

14 lines
233 B
TypeScript
Raw Normal View History

2017-09-28 13:08:25 +02:00
export class Test<T> {
instanceFunction(): void {
}
static staticFunction(): void {
}
get instanceGetter(): i32 {
2017-12-14 11:55:35 +01:00
return 0;
2017-09-28 13:08:25 +02:00
}
2017-12-14 11:55:35 +01:00
static set staticSetter(v: i32) {
2017-09-28 13:08:25 +02:00
}
instanceField: i32;
static staticField: i32;
}