1
0
mirror of https://github.com/fluencelabs/assemblyscript synced 2025-05-03 10:52:15 +00:00

17 lines
162 B
TypeScript
Raw Normal View History

// 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);