blob: 587f879db53f3ff064d0bdba6877a51564ba10a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Create Latin1 string + atom.
var latin1S = "foo".repeat(50);
var obj = {};
obj[latin1S] = 3;
assertEq(obj[latin1S], 3);
// Create a TwoByte version, ensure it's in the StringToAtomCache.
var twoByteS = newString(latin1S, {twoByte: true});
assertEq(obj[twoByteS], 3);
// Create a dependent TwoByte string.
var depTwoByteS = twoByteS.slice(1);
// Deduplication shouldn't get confused about Latin1 atom vs TwoByte strings.
minorgc();
assertEq(obj["f" + depTwoByteS], 3);
|