esverify icon indicating copy to clipboard operation
esverify copied to clipboard

Support for mutable objects and array

Open levjj opened this issue 6 years ago • 0 comments

esverify currently only supports immutable object literals and arrays.

Improved support for mutability probably requires some redesign of the fundamental base of the vcgen, e.g. segmentation logic or frames/regions.

Example:

const a = [1,2,3];
a.push(4);
assert(a.length === 4);

levjj avatar Jul 20 '19 21:07 levjj