v0.0.15: large tables
Raises the table entry cap from 1M to 16M so large tables build instead of failing with not enough memory.
- Fixes #37: a 10M-element array (
for i = 1, 10000000 do t[i] = i end) now builds in ~0.2s. Previously it died at ~1M entries. - The cap still bounds an unbounded
for i = 1, math.hugeloop so it terminates with a clean memory error rather than running forever. - Adds large-table regression tests (2M array + 2M string keys). 33/33 conformance.