Run properties set by index through the Array.items converter
When setting an item by index, it should run through the Array.items converter. This will do so now:
class MyArray {
static items = type.convert(Number);
}
let arr = new MyArray();
arr[0] = "4";
console.log(arr[0]); // 4