mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-29 22:51:46 +00:00
Initial commit
This commit is contained in:
12
tests/parser/fixtures/class.ts
Normal file
12
tests/parser/fixtures/class.ts
Normal file
@ -0,0 +1,12 @@
|
||||
export class Test<T> {
|
||||
instanceFunction(): void {
|
||||
}
|
||||
static staticFunction(): void {
|
||||
}
|
||||
get instanceGetter(): i32 {
|
||||
}
|
||||
static set staticSetter(v: i32): i32 {
|
||||
}
|
||||
instanceField: i32;
|
||||
static staticField: i32;
|
||||
}
|
Reference in New Issue
Block a user