Fri, 16 Jan 2015 04:50:19 +0100
Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32
michael@0 | 1 | var arr = ['this', 'works', 'for', 'me']; |
michael@0 | 2 | assertEq('this', arr[0]); |
michael@0 | 3 | assertEq('works', arr[1]); |
michael@0 | 4 | assertEq('for', arr[2]); |
michael@0 | 5 | assertEq('me', arr[3]); |
michael@0 | 6 | |
michael@0 | 7 | /* Multiple int32_t getelem for dense array. */ |