mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-25 15:12:12 +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);
|