Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fixed a minor bug for array autovivification on slice creation.
Example: var x = []; x[4,5] = [1,2]; # slice autovivification say x.map {"test"}; # works correctly now say x; # prints: [nil, nil, nil, nil, 1, 2]
- Loading branch information