Apitax / Scriptax

Scriptax is a general purpose, automation first language used to quickly script together automation.
GNU General Public License v3.0
2 stars 0 forks source link

Support builder pattern with method calls #35

Open ShawnClake opened 5 years ago

ShawnClake commented 5 years ago
myvar = new strings(param1="val1", param2="val2").doSomeAction().doSomeOtherAction();
something.firstAction().secondAction()

This should likely be applied to the method_call_statement grammar

ShawnClake commented 5 years ago

grammar added