Kray-G/kinx

Crash with destructuring assignment.

Kray-G opened this issue · 0 comments

Crash with the following code.

var user = {};
[user.name, user.surname] = "John Smith".split(' ');

System.println(user.name); // John
System.println(user.surname); // Smith