btwael/mammouth

Simplified array_push notation

CezaryDanielNowak opened this issue · 5 comments

http://pl1.php.net/array_push
its impossible to do:

{{
x = [1,2,3]
x[] = 4
}}

@x['sth'][] = 1 gives wrong result

@x['sth'][] = 1 is compiled to $this->x['sth'][] = 1;

ouh looks like, i had website cached in my browser :)