mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-26 15:32:16 +00:00
17 lines
162 B
TypeScript
17 lines
162 B
TypeScript
|
// Identifier
|
||
|
id();
|
||
|
|
||
|
// Call
|
||
|
id()();
|
||
|
|
||
|
// ElementAccess
|
||
|
arr[0]();
|
||
|
arr[0](1);
|
||
|
|
||
|
// PropertyAccess
|
||
|
obj.a();
|
||
|
obj.a(1);
|
||
|
|
||
|
// Everything
|
||
|
id(a)[0](b)(c).a(d)(e)[1](f)(g);
|