calls - shysolocup/aepl GitHub Wiki
calls or refs are different names for the classes and functions mostly for simplicity and variety
if you prefer your code being shorter but slightly less understandable there are shortened versions
if you prefer your code being longer but easier to understand then there are full versions
if you prefer lowercase then there are also lowercase versions
all of the functions have three main calls:
- add
- set
- new
Class.addProp(name, value);
Class.setProp(name, value);
Class.newProp(name, value);
// shorter
new Main.Func(); // upper
new Main.func(); // lower
// longer
new Main.Function(); // upper
new Main.function(); // lower
// shorter
new Main.Prop(); // upper
new Main.prop(); // lower
// longer
new Main.Property(); // upper
new Main.property(); // lower
// short
new Main.AFunc(); // upper
new Main.aFunc(); // lower
// medium
new Main.AsyncFunc(); // upper
new Main.asyncFunc(); // lower
// long
new Main.AsyncFunction(); // upper
new Main.asyncFunction(); // lower