PropertyStores.golden 63.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
#
# Autogenerated by generate-bytecode-expectations.
#

---
wrap: no
test function name: f

---
snippet: "
  function f(a) { a.name = \"val\"; }
  f({name : \"test\"})
"
14
frame size: 0
15
parameter count: 2
16
bytecode array length: 8
17
bytecodes: [
18
  /*   16 S> */ B(LdaConstant), U8(0),
19
  /*   23 E> */ B(SetNamedProperty), R(arg0), U8(1), U8(0),
20 21
                B(LdaUndefined),
  /*   32 S> */ B(Return),
22 23
]
constant pool: [
24 25
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["val"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name"],
26 27 28 29 30 31 32 33 34
]
handlers: [
]

---
snippet: "
  function f(a) { a[\"key\"] = \"val\"; }
  f({key : \"test\"})
"
35
frame size: 0
36
parameter count: 2
37
bytecode array length: 8
38
bytecodes: [
39
  /*   16 S> */ B(LdaConstant), U8(0),
40
  /*   25 E> */ B(SetNamedProperty), R(arg0), U8(1), U8(0),
41 42
                B(LdaUndefined),
  /*   34 S> */ B(Return),
43 44
]
constant pool: [
45 46
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["val"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["key"],
47 48 49 50 51 52 53 54 55 56 57
]
handlers: [
]

---
snippet: "
  function f(a) { a[100] = \"val\"; }
  f({100 : \"test\"})
"
frame size: 2
parameter count: 2
58
bytecode array length: 11
59
bytecodes: [
60
  /*   16 S> */ B(LdaSmi), I8(100),
61
                B(Star1),
62
                B(LdaConstant), U8(0),
63
  /*   23 E> */ B(SetKeyedProperty), R(arg0), R(1), U8(0),
64 65
                B(LdaUndefined),
  /*   32 S> */ B(Return),
66 67
]
constant pool: [
68
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["val"],
69 70 71 72 73 74 75 76 77
]
handlers: [
]

---
snippet: "
  function f(a, b) { a[b] = \"val\"; }
  f({arg : \"test\"}, \"arg\")
"
78
frame size: 0
79
parameter count: 3
80
bytecode array length: 8
81
bytecodes: [
82
  /*   19 S> */ B(LdaConstant), U8(0),
83
  /*   24 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(0),
84 85
                B(LdaUndefined),
  /*   33 S> */ B(Return),
86 87
]
constant pool: [
88
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["val"],
89 90 91 92 93 94 95 96 97
]
handlers: [
]

---
snippet: "
  function f(a) { a.name = a[-124]; }
  f({\"-124\" : \"test\", name : 123 })
"
98
frame size: 0
99
parameter count: 2
100
bytecode array length: 11
101
bytecodes: [
102
  /*   16 S> */ B(LdaSmi), I8(-124),
103 104
  /*   26 E> */ B(GetKeyedProperty), R(arg0), U8(0),
  /*   23 E> */ B(SetNamedProperty), R(arg0), U8(0), U8(2),
105 106
                B(LdaUndefined),
  /*   34 S> */ B(Return),
107 108
]
constant pool: [
109
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name"],
110 111 112 113 114 115 116 117 118
]
handlers: [
]

---
snippet: "
  function f(a) { \"use strict\"; a.name = \"val\"; }
  f({name : \"test\"})
"
119
frame size: 0
120
parameter count: 2
121
bytecode array length: 8
122
bytecodes: [
123
  /*   30 S> */ B(LdaConstant), U8(0),
124
  /*   37 E> */ B(SetNamedProperty), R(arg0), U8(1), U8(0),
125 126
                B(LdaUndefined),
  /*   46 S> */ B(Return),
127 128
]
constant pool: [
129 130
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["val"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name"],
131 132 133 134 135 136 137 138 139
]
handlers: [
]

---
snippet: "
  function f(a, b) { \"use strict\"; a[b] = \"val\"; }
  f({arg : \"test\"}, \"arg\")
"
140
frame size: 0
141
parameter count: 3
142
bytecode array length: 8
143
bytecodes: [
144
  /*   33 S> */ B(LdaConstant), U8(0),
145
  /*   38 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(0),
146 147
                B(LdaUndefined),
  /*   47 S> */ B(Return),
148 149
]
constant pool: [
150
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["val"],
151 152 153 154 155 156 157 158
]
handlers: [
]

---
snippet: "
  function f(a) {
    a.name = 1;
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
    var b = {};
    b.name128;
    b.name129;
    b.name130;
    b.name131;
    b.name132;
    b.name133;
    b.name134;
    b.name135;
    b.name136;
    b.name137;
    b.name138;
    b.name139;
    b.name140;
    b.name141;
    b.name142;
    b.name143;
    b.name144;
    b.name145;
    b.name146;
    b.name147;
    b.name148;
    b.name149;
    b.name150;
    b.name151;
    b.name152;
    b.name153;
    b.name154;
    b.name155;
    b.name156;
    b.name157;
    b.name158;
    b.name159;
    b.name160;
    b.name161;
    b.name162;
    b.name163;
    b.name164;
    b.name165;
    b.name166;
    b.name167;
    b.name168;
    b.name169;
    b.name170;
    b.name171;
    b.name172;
    b.name173;
    b.name174;
    b.name175;
    b.name176;
    b.name177;
    b.name178;
    b.name179;
    b.name180;
    b.name181;
    b.name182;
    b.name183;
    b.name184;
    b.name185;
    b.name186;
    b.name187;
    b.name188;
    b.name189;
    b.name190;
    b.name191;
    b.name192;
    b.name193;
    b.name194;
    b.name195;
    b.name196;
    b.name197;
    b.name198;
    b.name199;
    b.name200;
    b.name201;
    b.name202;
    b.name203;
    b.name204;
    b.name205;
    b.name206;
    b.name207;
    b.name208;
    b.name209;
    b.name210;
    b.name211;
    b.name212;
    b.name213;
    b.name214;
    b.name215;
    b.name216;
    b.name217;
    b.name218;
    b.name219;
    b.name220;
    b.name221;
    b.name222;
    b.name223;
    b.name224;
    b.name225;
    b.name226;
    b.name227;
    b.name228;
    b.name229;
    b.name230;
    b.name231;
    b.name232;
    b.name233;
    b.name234;
    b.name235;
    b.name236;
    b.name237;
    b.name238;
    b.name239;
    b.name240;
    b.name241;
    b.name242;
    b.name243;
    b.name244;
    b.name245;
    b.name246;
    b.name247;
    b.name248;
    b.name249;
    b.name250;
    b.name251;
    b.name252;
    b.name253;
    b.name254;
    b.name255;
288 289 290 291
    a.name = 2;
  }
  f({name : \"test\"})
"
292
frame size: 1
293
parameter count: 2
294
bytecode array length: 532
295
bytecodes: [
296
  /*   18 S> */ B(LdaSmi), I8(1),
297
  /*   25 E> */ B(SetNamedProperty), R(arg0), U8(0), U8(0),
298
  /*   40 S> */ B(CreateEmptyObjectLiteral),
299
                B(Star0),
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
  /*   48 S> */ B(GetNamedProperty), R(0), U8(1), U8(2),
  /*   61 S> */ B(GetNamedProperty), R(0), U8(2), U8(4),
  /*   74 S> */ B(GetNamedProperty), R(0), U8(3), U8(6),
  /*   87 S> */ B(GetNamedProperty), R(0), U8(4), U8(8),
  /*  100 S> */ B(GetNamedProperty), R(0), U8(5), U8(10),
  /*  113 S> */ B(GetNamedProperty), R(0), U8(6), U8(12),
  /*  126 S> */ B(GetNamedProperty), R(0), U8(7), U8(14),
  /*  139 S> */ B(GetNamedProperty), R(0), U8(8), U8(16),
  /*  152 S> */ B(GetNamedProperty), R(0), U8(9), U8(18),
  /*  165 S> */ B(GetNamedProperty), R(0), U8(10), U8(20),
  /*  178 S> */ B(GetNamedProperty), R(0), U8(11), U8(22),
  /*  191 S> */ B(GetNamedProperty), R(0), U8(12), U8(24),
  /*  204 S> */ B(GetNamedProperty), R(0), U8(13), U8(26),
  /*  217 S> */ B(GetNamedProperty), R(0), U8(14), U8(28),
  /*  230 S> */ B(GetNamedProperty), R(0), U8(15), U8(30),
  /*  243 S> */ B(GetNamedProperty), R(0), U8(16), U8(32),
  /*  256 S> */ B(GetNamedProperty), R(0), U8(17), U8(34),
  /*  269 S> */ B(GetNamedProperty), R(0), U8(18), U8(36),
  /*  282 S> */ B(GetNamedProperty), R(0), U8(19), U8(38),
  /*  295 S> */ B(GetNamedProperty), R(0), U8(20), U8(40),
  /*  308 S> */ B(GetNamedProperty), R(0), U8(21), U8(42),
  /*  321 S> */ B(GetNamedProperty), R(0), U8(22), U8(44),
  /*  334 S> */ B(GetNamedProperty), R(0), U8(23), U8(46),
  /*  347 S> */ B(GetNamedProperty), R(0), U8(24), U8(48),
  /*  360 S> */ B(GetNamedProperty), R(0), U8(25), U8(50),
  /*  373 S> */ B(GetNamedProperty), R(0), U8(26), U8(52),
  /*  386 S> */ B(GetNamedProperty), R(0), U8(27), U8(54),
  /*  399 S> */ B(GetNamedProperty), R(0), U8(28), U8(56),
  /*  412 S> */ B(GetNamedProperty), R(0), U8(29), U8(58),
  /*  425 S> */ B(GetNamedProperty), R(0), U8(30), U8(60),
  /*  438 S> */ B(GetNamedProperty), R(0), U8(31), U8(62),
  /*  451 S> */ B(GetNamedProperty), R(0), U8(32), U8(64),
  /*  464 S> */ B(GetNamedProperty), R(0), U8(33), U8(66),
  /*  477 S> */ B(GetNamedProperty), R(0), U8(34), U8(68),
  /*  490 S> */ B(GetNamedProperty), R(0), U8(35), U8(70),
  /*  503 S> */ B(GetNamedProperty), R(0), U8(36), U8(72),
  /*  516 S> */ B(GetNamedProperty), R(0), U8(37), U8(74),
  /*  529 S> */ B(GetNamedProperty), R(0), U8(38), U8(76),
  /*  542 S> */ B(GetNamedProperty), R(0), U8(39), U8(78),
  /*  555 S> */ B(GetNamedProperty), R(0), U8(40), U8(80),
  /*  568 S> */ B(GetNamedProperty), R(0), U8(41), U8(82),
  /*  581 S> */ B(GetNamedProperty), R(0), U8(42), U8(84),
  /*  594 S> */ B(GetNamedProperty), R(0), U8(43), U8(86),
  /*  607 S> */ B(GetNamedProperty), R(0), U8(44), U8(88),
  /*  620 S> */ B(GetNamedProperty), R(0), U8(45), U8(90),
  /*  633 S> */ B(GetNamedProperty), R(0), U8(46), U8(92),
  /*  646 S> */ B(GetNamedProperty), R(0), U8(47), U8(94),
  /*  659 S> */ B(GetNamedProperty), R(0), U8(48), U8(96),
  /*  672 S> */ B(GetNamedProperty), R(0), U8(49), U8(98),
  /*  685 S> */ B(GetNamedProperty), R(0), U8(50), U8(100),
  /*  698 S> */ B(GetNamedProperty), R(0), U8(51), U8(102),
  /*  711 S> */ B(GetNamedProperty), R(0), U8(52), U8(104),
  /*  724 S> */ B(GetNamedProperty), R(0), U8(53), U8(106),
  /*  737 S> */ B(GetNamedProperty), R(0), U8(54), U8(108),
  /*  750 S> */ B(GetNamedProperty), R(0), U8(55), U8(110),
  /*  763 S> */ B(GetNamedProperty), R(0), U8(56), U8(112),
  /*  776 S> */ B(GetNamedProperty), R(0), U8(57), U8(114),
  /*  789 S> */ B(GetNamedProperty), R(0), U8(58), U8(116),
  /*  802 S> */ B(GetNamedProperty), R(0), U8(59), U8(118),
  /*  815 S> */ B(GetNamedProperty), R(0), U8(60), U8(120),
  /*  828 S> */ B(GetNamedProperty), R(0), U8(61), U8(122),
  /*  841 S> */ B(GetNamedProperty), R(0), U8(62), U8(124),
  /*  854 S> */ B(GetNamedProperty), R(0), U8(63), U8(126),
  /*  867 S> */ B(GetNamedProperty), R(0), U8(64), U8(128),
  /*  880 S> */ B(GetNamedProperty), R(0), U8(65), U8(130),
  /*  893 S> */ B(GetNamedProperty), R(0), U8(66), U8(132),
  /*  906 S> */ B(GetNamedProperty), R(0), U8(67), U8(134),
  /*  919 S> */ B(GetNamedProperty), R(0), U8(68), U8(136),
  /*  932 S> */ B(GetNamedProperty), R(0), U8(69), U8(138),
  /*  945 S> */ B(GetNamedProperty), R(0), U8(70), U8(140),
  /*  958 S> */ B(GetNamedProperty), R(0), U8(71), U8(142),
  /*  971 S> */ B(GetNamedProperty), R(0), U8(72), U8(144),
  /*  984 S> */ B(GetNamedProperty), R(0), U8(73), U8(146),
  /*  997 S> */ B(GetNamedProperty), R(0), U8(74), U8(148),
  /* 1010 S> */ B(GetNamedProperty), R(0), U8(75), U8(150),
  /* 1023 S> */ B(GetNamedProperty), R(0), U8(76), U8(152),
  /* 1036 S> */ B(GetNamedProperty), R(0), U8(77), U8(154),
  /* 1049 S> */ B(GetNamedProperty), R(0), U8(78), U8(156),
  /* 1062 S> */ B(GetNamedProperty), R(0), U8(79), U8(158),
  /* 1075 S> */ B(GetNamedProperty), R(0), U8(80), U8(160),
  /* 1088 S> */ B(GetNamedProperty), R(0), U8(81), U8(162),
  /* 1101 S> */ B(GetNamedProperty), R(0), U8(82), U8(164),
  /* 1114 S> */ B(GetNamedProperty), R(0), U8(83), U8(166),
  /* 1127 S> */ B(GetNamedProperty), R(0), U8(84), U8(168),
  /* 1140 S> */ B(GetNamedProperty), R(0), U8(85), U8(170),
  /* 1153 S> */ B(GetNamedProperty), R(0), U8(86), U8(172),
  /* 1166 S> */ B(GetNamedProperty), R(0), U8(87), U8(174),
  /* 1179 S> */ B(GetNamedProperty), R(0), U8(88), U8(176),
  /* 1192 S> */ B(GetNamedProperty), R(0), U8(89), U8(178),
  /* 1205 S> */ B(GetNamedProperty), R(0), U8(90), U8(180),
  /* 1218 S> */ B(GetNamedProperty), R(0), U8(91), U8(182),
  /* 1231 S> */ B(GetNamedProperty), R(0), U8(92), U8(184),
  /* 1244 S> */ B(GetNamedProperty), R(0), U8(93), U8(186),
  /* 1257 S> */ B(GetNamedProperty), R(0), U8(94), U8(188),
  /* 1270 S> */ B(GetNamedProperty), R(0), U8(95), U8(190),
  /* 1283 S> */ B(GetNamedProperty), R(0), U8(96), U8(192),
  /* 1296 S> */ B(GetNamedProperty), R(0), U8(97), U8(194),
  /* 1309 S> */ B(GetNamedProperty), R(0), U8(98), U8(196),
  /* 1322 S> */ B(GetNamedProperty), R(0), U8(99), U8(198),
  /* 1335 S> */ B(GetNamedProperty), R(0), U8(100), U8(200),
  /* 1348 S> */ B(GetNamedProperty), R(0), U8(101), U8(202),
  /* 1361 S> */ B(GetNamedProperty), R(0), U8(102), U8(204),
  /* 1374 S> */ B(GetNamedProperty), R(0), U8(103), U8(206),
  /* 1387 S> */ B(GetNamedProperty), R(0), U8(104), U8(208),
  /* 1400 S> */ B(GetNamedProperty), R(0), U8(105), U8(210),
  /* 1413 S> */ B(GetNamedProperty), R(0), U8(106), U8(212),
  /* 1426 S> */ B(GetNamedProperty), R(0), U8(107), U8(214),
  /* 1439 S> */ B(GetNamedProperty), R(0), U8(108), U8(216),
  /* 1452 S> */ B(GetNamedProperty), R(0), U8(109), U8(218),
  /* 1465 S> */ B(GetNamedProperty), R(0), U8(110), U8(220),
  /* 1478 S> */ B(GetNamedProperty), R(0), U8(111), U8(222),
  /* 1491 S> */ B(GetNamedProperty), R(0), U8(112), U8(224),
  /* 1504 S> */ B(GetNamedProperty), R(0), U8(113), U8(226),
  /* 1517 S> */ B(GetNamedProperty), R(0), U8(114), U8(228),
  /* 1530 S> */ B(GetNamedProperty), R(0), U8(115), U8(230),
  /* 1543 S> */ B(GetNamedProperty), R(0), U8(116), U8(232),
  /* 1556 S> */ B(GetNamedProperty), R(0), U8(117), U8(234),
  /* 1569 S> */ B(GetNamedProperty), R(0), U8(118), U8(236),
  /* 1582 S> */ B(GetNamedProperty), R(0), U8(119), U8(238),
  /* 1595 S> */ B(GetNamedProperty), R(0), U8(120), U8(240),
  /* 1608 S> */ B(GetNamedProperty), R(0), U8(121), U8(242),
  /* 1621 S> */ B(GetNamedProperty), R(0), U8(122), U8(244),
  /* 1634 S> */ B(GetNamedProperty), R(0), U8(123), U8(246),
  /* 1647 S> */ B(GetNamedProperty), R(0), U8(124), U8(248),
  /* 1660 S> */ B(GetNamedProperty), R(0), U8(125), U8(250),
  /* 1673 S> */ B(GetNamedProperty), R(0), U8(126), U8(252),
  /* 1686 S> */ B(GetNamedProperty), R(0), U8(127), U8(254),
  /* 1699 S> */ B(Wide), B(GetNamedProperty), R16(0), U16(128), U16(256),
428
  /* 1710 S> */ B(LdaSmi), I8(2),
429
  /* 1717 E> */ B(SetNamedProperty), R(arg0), U8(0), U8(0),
430
                B(LdaUndefined),
431
  /* 1722 S> */ B(Return),
432 433
]
constant pool: [
434
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name"],
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name128"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name129"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name130"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name131"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name132"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name133"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name134"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name135"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name136"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name137"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name138"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name139"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name140"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name141"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name142"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name143"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name144"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name145"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name146"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name147"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name148"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name149"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name150"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name151"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name152"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name153"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name154"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name155"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name156"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name157"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name158"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name159"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name160"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name161"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name162"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name163"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name164"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name165"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name166"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name167"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name168"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name169"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name170"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name171"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name172"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name173"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name174"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name175"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name176"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name177"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name178"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name179"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name180"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name181"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name182"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name183"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name184"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name185"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name186"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name187"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name188"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name189"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name190"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name191"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name192"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name193"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name194"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name195"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name196"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name197"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name198"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name199"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name200"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name201"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name202"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name203"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name204"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name205"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name206"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name207"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name208"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name209"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name210"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name211"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name212"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name213"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name214"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name215"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name216"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name217"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name218"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name219"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name220"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name221"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name222"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name223"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name224"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name225"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name226"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name227"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name228"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name229"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name230"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name231"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name232"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name233"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name234"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name235"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name236"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name237"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name238"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name239"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name240"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name241"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name242"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name243"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name244"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name245"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name246"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name247"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name248"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name249"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name250"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name251"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name252"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name253"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name254"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name255"],
563 564 565 566 567 568 569 570 571
]
handlers: [
]

---
snippet: "
  function f(a) {
   'use strict';
    a.name = 1;
572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
    var b = {};
    b.name256;
    b.name257;
    b.name258;
    b.name259;
    b.name260;
    b.name261;
    b.name262;
    b.name263;
    b.name264;
    b.name265;
    b.name266;
    b.name267;
    b.name268;
    b.name269;
    b.name270;
    b.name271;
    b.name272;
    b.name273;
    b.name274;
    b.name275;
    b.name276;
    b.name277;
    b.name278;
    b.name279;
    b.name280;
    b.name281;
    b.name282;
    b.name283;
    b.name284;
    b.name285;
    b.name286;
    b.name287;
    b.name288;
    b.name289;
    b.name290;
    b.name291;
    b.name292;
    b.name293;
    b.name294;
    b.name295;
    b.name296;
    b.name297;
    b.name298;
    b.name299;
    b.name300;
    b.name301;
    b.name302;
    b.name303;
    b.name304;
    b.name305;
    b.name306;
    b.name307;
    b.name308;
    b.name309;
    b.name310;
    b.name311;
    b.name312;
    b.name313;
    b.name314;
    b.name315;
    b.name316;
    b.name317;
    b.name318;
    b.name319;
    b.name320;
    b.name321;
    b.name322;
    b.name323;
    b.name324;
    b.name325;
    b.name326;
    b.name327;
    b.name328;
    b.name329;
    b.name330;
    b.name331;
    b.name332;
    b.name333;
    b.name334;
    b.name335;
    b.name336;
    b.name337;
    b.name338;
    b.name339;
    b.name340;
    b.name341;
    b.name342;
    b.name343;
    b.name344;
    b.name345;
    b.name346;
    b.name347;
    b.name348;
    b.name349;
    b.name350;
    b.name351;
    b.name352;
    b.name353;
    b.name354;
    b.name355;
    b.name356;
    b.name357;
    b.name358;
    b.name359;
    b.name360;
    b.name361;
    b.name362;
    b.name363;
    b.name364;
    b.name365;
    b.name366;
    b.name367;
    b.name368;
    b.name369;
    b.name370;
    b.name371;
    b.name372;
    b.name373;
    b.name374;
    b.name375;
    b.name376;
    b.name377;
    b.name378;
    b.name379;
    b.name380;
    b.name381;
    b.name382;
    b.name383;
701 702 703 704
    a.name = 2;
  }
  f({name : \"test\"})
"
705
frame size: 1
706
parameter count: 2
707
bytecode array length: 532
708
bytecodes: [
709
  /*   33 S> */ B(LdaSmi), I8(1),
710
  /*   40 E> */ B(SetNamedProperty), R(arg0), U8(0), U8(0),
711
  /*   55 S> */ B(CreateEmptyObjectLiteral),
712
                B(Star0),
713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840
  /*   63 S> */ B(GetNamedProperty), R(0), U8(1), U8(2),
  /*   76 S> */ B(GetNamedProperty), R(0), U8(2), U8(4),
  /*   89 S> */ B(GetNamedProperty), R(0), U8(3), U8(6),
  /*  102 S> */ B(GetNamedProperty), R(0), U8(4), U8(8),
  /*  115 S> */ B(GetNamedProperty), R(0), U8(5), U8(10),
  /*  128 S> */ B(GetNamedProperty), R(0), U8(6), U8(12),
  /*  141 S> */ B(GetNamedProperty), R(0), U8(7), U8(14),
  /*  154 S> */ B(GetNamedProperty), R(0), U8(8), U8(16),
  /*  167 S> */ B(GetNamedProperty), R(0), U8(9), U8(18),
  /*  180 S> */ B(GetNamedProperty), R(0), U8(10), U8(20),
  /*  193 S> */ B(GetNamedProperty), R(0), U8(11), U8(22),
  /*  206 S> */ B(GetNamedProperty), R(0), U8(12), U8(24),
  /*  219 S> */ B(GetNamedProperty), R(0), U8(13), U8(26),
  /*  232 S> */ B(GetNamedProperty), R(0), U8(14), U8(28),
  /*  245 S> */ B(GetNamedProperty), R(0), U8(15), U8(30),
  /*  258 S> */ B(GetNamedProperty), R(0), U8(16), U8(32),
  /*  271 S> */ B(GetNamedProperty), R(0), U8(17), U8(34),
  /*  284 S> */ B(GetNamedProperty), R(0), U8(18), U8(36),
  /*  297 S> */ B(GetNamedProperty), R(0), U8(19), U8(38),
  /*  310 S> */ B(GetNamedProperty), R(0), U8(20), U8(40),
  /*  323 S> */ B(GetNamedProperty), R(0), U8(21), U8(42),
  /*  336 S> */ B(GetNamedProperty), R(0), U8(22), U8(44),
  /*  349 S> */ B(GetNamedProperty), R(0), U8(23), U8(46),
  /*  362 S> */ B(GetNamedProperty), R(0), U8(24), U8(48),
  /*  375 S> */ B(GetNamedProperty), R(0), U8(25), U8(50),
  /*  388 S> */ B(GetNamedProperty), R(0), U8(26), U8(52),
  /*  401 S> */ B(GetNamedProperty), R(0), U8(27), U8(54),
  /*  414 S> */ B(GetNamedProperty), R(0), U8(28), U8(56),
  /*  427 S> */ B(GetNamedProperty), R(0), U8(29), U8(58),
  /*  440 S> */ B(GetNamedProperty), R(0), U8(30), U8(60),
  /*  453 S> */ B(GetNamedProperty), R(0), U8(31), U8(62),
  /*  466 S> */ B(GetNamedProperty), R(0), U8(32), U8(64),
  /*  479 S> */ B(GetNamedProperty), R(0), U8(33), U8(66),
  /*  492 S> */ B(GetNamedProperty), R(0), U8(34), U8(68),
  /*  505 S> */ B(GetNamedProperty), R(0), U8(35), U8(70),
  /*  518 S> */ B(GetNamedProperty), R(0), U8(36), U8(72),
  /*  531 S> */ B(GetNamedProperty), R(0), U8(37), U8(74),
  /*  544 S> */ B(GetNamedProperty), R(0), U8(38), U8(76),
  /*  557 S> */ B(GetNamedProperty), R(0), U8(39), U8(78),
  /*  570 S> */ B(GetNamedProperty), R(0), U8(40), U8(80),
  /*  583 S> */ B(GetNamedProperty), R(0), U8(41), U8(82),
  /*  596 S> */ B(GetNamedProperty), R(0), U8(42), U8(84),
  /*  609 S> */ B(GetNamedProperty), R(0), U8(43), U8(86),
  /*  622 S> */ B(GetNamedProperty), R(0), U8(44), U8(88),
  /*  635 S> */ B(GetNamedProperty), R(0), U8(45), U8(90),
  /*  648 S> */ B(GetNamedProperty), R(0), U8(46), U8(92),
  /*  661 S> */ B(GetNamedProperty), R(0), U8(47), U8(94),
  /*  674 S> */ B(GetNamedProperty), R(0), U8(48), U8(96),
  /*  687 S> */ B(GetNamedProperty), R(0), U8(49), U8(98),
  /*  700 S> */ B(GetNamedProperty), R(0), U8(50), U8(100),
  /*  713 S> */ B(GetNamedProperty), R(0), U8(51), U8(102),
  /*  726 S> */ B(GetNamedProperty), R(0), U8(52), U8(104),
  /*  739 S> */ B(GetNamedProperty), R(0), U8(53), U8(106),
  /*  752 S> */ B(GetNamedProperty), R(0), U8(54), U8(108),
  /*  765 S> */ B(GetNamedProperty), R(0), U8(55), U8(110),
  /*  778 S> */ B(GetNamedProperty), R(0), U8(56), U8(112),
  /*  791 S> */ B(GetNamedProperty), R(0), U8(57), U8(114),
  /*  804 S> */ B(GetNamedProperty), R(0), U8(58), U8(116),
  /*  817 S> */ B(GetNamedProperty), R(0), U8(59), U8(118),
  /*  830 S> */ B(GetNamedProperty), R(0), U8(60), U8(120),
  /*  843 S> */ B(GetNamedProperty), R(0), U8(61), U8(122),
  /*  856 S> */ B(GetNamedProperty), R(0), U8(62), U8(124),
  /*  869 S> */ B(GetNamedProperty), R(0), U8(63), U8(126),
  /*  882 S> */ B(GetNamedProperty), R(0), U8(64), U8(128),
  /*  895 S> */ B(GetNamedProperty), R(0), U8(65), U8(130),
  /*  908 S> */ B(GetNamedProperty), R(0), U8(66), U8(132),
  /*  921 S> */ B(GetNamedProperty), R(0), U8(67), U8(134),
  /*  934 S> */ B(GetNamedProperty), R(0), U8(68), U8(136),
  /*  947 S> */ B(GetNamedProperty), R(0), U8(69), U8(138),
  /*  960 S> */ B(GetNamedProperty), R(0), U8(70), U8(140),
  /*  973 S> */ B(GetNamedProperty), R(0), U8(71), U8(142),
  /*  986 S> */ B(GetNamedProperty), R(0), U8(72), U8(144),
  /*  999 S> */ B(GetNamedProperty), R(0), U8(73), U8(146),
  /* 1012 S> */ B(GetNamedProperty), R(0), U8(74), U8(148),
  /* 1025 S> */ B(GetNamedProperty), R(0), U8(75), U8(150),
  /* 1038 S> */ B(GetNamedProperty), R(0), U8(76), U8(152),
  /* 1051 S> */ B(GetNamedProperty), R(0), U8(77), U8(154),
  /* 1064 S> */ B(GetNamedProperty), R(0), U8(78), U8(156),
  /* 1077 S> */ B(GetNamedProperty), R(0), U8(79), U8(158),
  /* 1090 S> */ B(GetNamedProperty), R(0), U8(80), U8(160),
  /* 1103 S> */ B(GetNamedProperty), R(0), U8(81), U8(162),
  /* 1116 S> */ B(GetNamedProperty), R(0), U8(82), U8(164),
  /* 1129 S> */ B(GetNamedProperty), R(0), U8(83), U8(166),
  /* 1142 S> */ B(GetNamedProperty), R(0), U8(84), U8(168),
  /* 1155 S> */ B(GetNamedProperty), R(0), U8(85), U8(170),
  /* 1168 S> */ B(GetNamedProperty), R(0), U8(86), U8(172),
  /* 1181 S> */ B(GetNamedProperty), R(0), U8(87), U8(174),
  /* 1194 S> */ B(GetNamedProperty), R(0), U8(88), U8(176),
  /* 1207 S> */ B(GetNamedProperty), R(0), U8(89), U8(178),
  /* 1220 S> */ B(GetNamedProperty), R(0), U8(90), U8(180),
  /* 1233 S> */ B(GetNamedProperty), R(0), U8(91), U8(182),
  /* 1246 S> */ B(GetNamedProperty), R(0), U8(92), U8(184),
  /* 1259 S> */ B(GetNamedProperty), R(0), U8(93), U8(186),
  /* 1272 S> */ B(GetNamedProperty), R(0), U8(94), U8(188),
  /* 1285 S> */ B(GetNamedProperty), R(0), U8(95), U8(190),
  /* 1298 S> */ B(GetNamedProperty), R(0), U8(96), U8(192),
  /* 1311 S> */ B(GetNamedProperty), R(0), U8(97), U8(194),
  /* 1324 S> */ B(GetNamedProperty), R(0), U8(98), U8(196),
  /* 1337 S> */ B(GetNamedProperty), R(0), U8(99), U8(198),
  /* 1350 S> */ B(GetNamedProperty), R(0), U8(100), U8(200),
  /* 1363 S> */ B(GetNamedProperty), R(0), U8(101), U8(202),
  /* 1376 S> */ B(GetNamedProperty), R(0), U8(102), U8(204),
  /* 1389 S> */ B(GetNamedProperty), R(0), U8(103), U8(206),
  /* 1402 S> */ B(GetNamedProperty), R(0), U8(104), U8(208),
  /* 1415 S> */ B(GetNamedProperty), R(0), U8(105), U8(210),
  /* 1428 S> */ B(GetNamedProperty), R(0), U8(106), U8(212),
  /* 1441 S> */ B(GetNamedProperty), R(0), U8(107), U8(214),
  /* 1454 S> */ B(GetNamedProperty), R(0), U8(108), U8(216),
  /* 1467 S> */ B(GetNamedProperty), R(0), U8(109), U8(218),
  /* 1480 S> */ B(GetNamedProperty), R(0), U8(110), U8(220),
  /* 1493 S> */ B(GetNamedProperty), R(0), U8(111), U8(222),
  /* 1506 S> */ B(GetNamedProperty), R(0), U8(112), U8(224),
  /* 1519 S> */ B(GetNamedProperty), R(0), U8(113), U8(226),
  /* 1532 S> */ B(GetNamedProperty), R(0), U8(114), U8(228),
  /* 1545 S> */ B(GetNamedProperty), R(0), U8(115), U8(230),
  /* 1558 S> */ B(GetNamedProperty), R(0), U8(116), U8(232),
  /* 1571 S> */ B(GetNamedProperty), R(0), U8(117), U8(234),
  /* 1584 S> */ B(GetNamedProperty), R(0), U8(118), U8(236),
  /* 1597 S> */ B(GetNamedProperty), R(0), U8(119), U8(238),
  /* 1610 S> */ B(GetNamedProperty), R(0), U8(120), U8(240),
  /* 1623 S> */ B(GetNamedProperty), R(0), U8(121), U8(242),
  /* 1636 S> */ B(GetNamedProperty), R(0), U8(122), U8(244),
  /* 1649 S> */ B(GetNamedProperty), R(0), U8(123), U8(246),
  /* 1662 S> */ B(GetNamedProperty), R(0), U8(124), U8(248),
  /* 1675 S> */ B(GetNamedProperty), R(0), U8(125), U8(250),
  /* 1688 S> */ B(GetNamedProperty), R(0), U8(126), U8(252),
  /* 1701 S> */ B(GetNamedProperty), R(0), U8(127), U8(254),
  /* 1714 S> */ B(Wide), B(GetNamedProperty), R16(0), U16(128), U16(256),
841
  /* 1725 S> */ B(LdaSmi), I8(2),
842
  /* 1732 E> */ B(SetNamedProperty), R(arg0), U8(0), U8(0),
843
                B(LdaUndefined),
844
  /* 1737 S> */ B(Return),
845 846
]
constant pool: [
847
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name"],
848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name256"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name257"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name258"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name259"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name260"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name261"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name262"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name263"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name264"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name265"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name266"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name267"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name268"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name269"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name270"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name271"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name272"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name273"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name274"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name275"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name276"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name277"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name278"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name279"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name280"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name281"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name282"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name283"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name284"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name285"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name286"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name287"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name288"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name289"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name290"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name291"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name292"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name293"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name294"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name295"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name296"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name297"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name298"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name299"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name300"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name301"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name302"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name303"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name304"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name305"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name306"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name307"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name308"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name309"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name310"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name311"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name312"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name313"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name314"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name315"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name316"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name317"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name318"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name319"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name320"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name321"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name322"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name323"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name324"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name325"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name326"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name327"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name328"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name329"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name330"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name331"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name332"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name333"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name334"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name335"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name336"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name337"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name338"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name339"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name340"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name341"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name342"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name343"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name344"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name345"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name346"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name347"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name348"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name349"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name350"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name351"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name352"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name353"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name354"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name355"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name356"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name357"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name358"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name359"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name360"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name361"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name362"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name363"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name364"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name365"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name366"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name367"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name368"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name369"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name370"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name371"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name372"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name373"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name374"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name375"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name376"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name377"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name378"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name379"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name380"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name381"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name382"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["name383"],
976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114
]
handlers: [
]

---
snippet: "
  function f(a, b) {
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 2;
  }
  f({name : \"test\"})
"
1115
frame size: 0
1116
parameter count: 3
1117
bytecode array length: 780
1118
bytecodes: [
1119
  /*   21 S> */ B(LdaSmi), I8(1),
1120
  /*   26 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(0),
1121
  /*   33 S> */ B(LdaSmi), I8(1),
1122
  /*   38 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(2),
1123
  /*   45 S> */ B(LdaSmi), I8(1),
1124
  /*   50 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(4),
1125
  /*   57 S> */ B(LdaSmi), I8(1),
1126
  /*   62 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(6),
1127
  /*   69 S> */ B(LdaSmi), I8(1),
1128
  /*   74 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(8),
1129
  /*   81 S> */ B(LdaSmi), I8(1),
1130
  /*   86 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(10),
1131
  /*   93 S> */ B(LdaSmi), I8(1),
1132
  /*   98 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(12),
1133
  /*  105 S> */ B(LdaSmi), I8(1),
1134
  /*  110 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(14),
1135
  /*  117 S> */ B(LdaSmi), I8(1),
1136
  /*  122 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(16),
1137
  /*  129 S> */ B(LdaSmi), I8(1),
1138
  /*  134 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(18),
1139
  /*  141 S> */ B(LdaSmi), I8(1),
1140
  /*  146 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(20),
1141
  /*  153 S> */ B(LdaSmi), I8(1),
1142
  /*  158 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(22),
1143
  /*  165 S> */ B(LdaSmi), I8(1),
1144
  /*  170 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(24),
1145
  /*  177 S> */ B(LdaSmi), I8(1),
1146
  /*  182 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(26),
1147
  /*  189 S> */ B(LdaSmi), I8(1),
1148
  /*  194 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(28),
1149
  /*  201 S> */ B(LdaSmi), I8(1),
1150
  /*  206 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(30),
1151
  /*  213 S> */ B(LdaSmi), I8(1),
1152
  /*  218 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(32),
1153
  /*  225 S> */ B(LdaSmi), I8(1),
1154
  /*  230 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(34),
1155
  /*  237 S> */ B(LdaSmi), I8(1),
1156
  /*  242 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(36),
1157
  /*  249 S> */ B(LdaSmi), I8(1),
1158
  /*  254 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(38),
1159
  /*  261 S> */ B(LdaSmi), I8(1),
1160
  /*  266 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(40),
1161
  /*  273 S> */ B(LdaSmi), I8(1),
1162
  /*  278 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(42),
1163
  /*  285 S> */ B(LdaSmi), I8(1),
1164
  /*  290 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(44),
1165
  /*  297 S> */ B(LdaSmi), I8(1),
1166
  /*  302 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(46),
1167
  /*  309 S> */ B(LdaSmi), I8(1),
1168
  /*  314 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(48),
1169
  /*  321 S> */ B(LdaSmi), I8(1),
1170
  /*  326 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(50),
1171
  /*  333 S> */ B(LdaSmi), I8(1),
1172
  /*  338 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(52),
1173
  /*  345 S> */ B(LdaSmi), I8(1),
1174
  /*  350 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(54),
1175
  /*  357 S> */ B(LdaSmi), I8(1),
1176
  /*  362 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(56),
1177
  /*  369 S> */ B(LdaSmi), I8(1),
1178
  /*  374 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(58),
1179
  /*  381 S> */ B(LdaSmi), I8(1),
1180
  /*  386 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(60),
1181
  /*  393 S> */ B(LdaSmi), I8(1),
1182
  /*  398 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(62),
1183
  /*  405 S> */ B(LdaSmi), I8(1),
1184
  /*  410 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(64),
1185
  /*  417 S> */ B(LdaSmi), I8(1),
1186
  /*  422 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(66),
1187
  /*  429 S> */ B(LdaSmi), I8(1),
1188
  /*  434 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(68),
1189
  /*  441 S> */ B(LdaSmi), I8(1),
1190
  /*  446 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(70),
1191
  /*  453 S> */ B(LdaSmi), I8(1),
1192
  /*  458 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(72),
1193
  /*  465 S> */ B(LdaSmi), I8(1),
1194
  /*  470 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(74),
1195
  /*  477 S> */ B(LdaSmi), I8(1),
1196
  /*  482 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(76),
1197
  /*  489 S> */ B(LdaSmi), I8(1),
1198
  /*  494 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(78),
1199
  /*  501 S> */ B(LdaSmi), I8(1),
1200
  /*  506 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(80),
1201
  /*  513 S> */ B(LdaSmi), I8(1),
1202
  /*  518 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(82),
1203
  /*  525 S> */ B(LdaSmi), I8(1),
1204
  /*  530 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(84),
1205
  /*  537 S> */ B(LdaSmi), I8(1),
1206
  /*  542 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(86),
1207
  /*  549 S> */ B(LdaSmi), I8(1),
1208
  /*  554 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(88),
1209
  /*  561 S> */ B(LdaSmi), I8(1),
1210
  /*  566 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(90),
1211
  /*  573 S> */ B(LdaSmi), I8(1),
1212
  /*  578 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(92),
1213
  /*  585 S> */ B(LdaSmi), I8(1),
1214
  /*  590 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(94),
1215
  /*  597 S> */ B(LdaSmi), I8(1),
1216
  /*  602 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(96),
1217
  /*  609 S> */ B(LdaSmi), I8(1),
1218
  /*  614 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(98),
1219
  /*  621 S> */ B(LdaSmi), I8(1),
1220
  /*  626 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(100),
1221
  /*  633 S> */ B(LdaSmi), I8(1),
1222
  /*  638 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(102),
1223
  /*  645 S> */ B(LdaSmi), I8(1),
1224
  /*  650 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(104),
1225
  /*  657 S> */ B(LdaSmi), I8(1),
1226
  /*  662 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(106),
1227
  /*  669 S> */ B(LdaSmi), I8(1),
1228
  /*  674 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(108),
1229
  /*  681 S> */ B(LdaSmi), I8(1),
1230
  /*  686 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(110),
1231
  /*  693 S> */ B(LdaSmi), I8(1),
1232
  /*  698 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(112),
1233
  /*  705 S> */ B(LdaSmi), I8(1),
1234
  /*  710 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(114),
1235
  /*  717 S> */ B(LdaSmi), I8(1),
1236
  /*  722 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(116),
1237
  /*  729 S> */ B(LdaSmi), I8(1),
1238
  /*  734 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(118),
1239
  /*  741 S> */ B(LdaSmi), I8(1),
1240
  /*  746 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(120),
1241
  /*  753 S> */ B(LdaSmi), I8(1),
1242
  /*  758 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(122),
1243
  /*  765 S> */ B(LdaSmi), I8(1),
1244
  /*  770 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(124),
1245
  /*  777 S> */ B(LdaSmi), I8(1),
1246
  /*  782 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(126),
1247
  /*  789 S> */ B(LdaSmi), I8(1),
1248
  /*  794 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(128),
1249
  /*  801 S> */ B(LdaSmi), I8(1),
1250
  /*  806 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(130),
1251
  /*  813 S> */ B(LdaSmi), I8(1),
1252
  /*  818 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(132),
1253
  /*  825 S> */ B(LdaSmi), I8(1),
1254
  /*  830 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(134),
1255
  /*  837 S> */ B(LdaSmi), I8(1),
1256
  /*  842 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(136),
1257
  /*  849 S> */ B(LdaSmi), I8(1),
1258
  /*  854 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(138),
1259
  /*  861 S> */ B(LdaSmi), I8(1),
1260
  /*  866 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(140),
1261
  /*  873 S> */ B(LdaSmi), I8(1),
1262
  /*  878 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(142),
1263
  /*  885 S> */ B(LdaSmi), I8(1),
1264
  /*  890 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(144),
1265
  /*  897 S> */ B(LdaSmi), I8(1),
1266
  /*  902 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(146),
1267
  /*  909 S> */ B(LdaSmi), I8(1),
1268
  /*  914 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(148),
1269
  /*  921 S> */ B(LdaSmi), I8(1),
1270
  /*  926 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(150),
1271
  /*  933 S> */ B(LdaSmi), I8(1),
1272
  /*  938 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(152),
1273
  /*  945 S> */ B(LdaSmi), I8(1),
1274
  /*  950 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(154),
1275
  /*  957 S> */ B(LdaSmi), I8(1),
1276
  /*  962 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(156),
1277
  /*  969 S> */ B(LdaSmi), I8(1),
1278
  /*  974 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(158),
1279
  /*  981 S> */ B(LdaSmi), I8(1),
1280
  /*  986 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(160),
1281
  /*  993 S> */ B(LdaSmi), I8(1),
1282
  /*  998 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(162),
1283
  /* 1005 S> */ B(LdaSmi), I8(1),
1284
  /* 1010 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(164),
1285
  /* 1017 S> */ B(LdaSmi), I8(1),
1286
  /* 1022 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(166),
1287
  /* 1029 S> */ B(LdaSmi), I8(1),
1288
  /* 1034 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(168),
1289
  /* 1041 S> */ B(LdaSmi), I8(1),
1290
  /* 1046 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(170),
1291
  /* 1053 S> */ B(LdaSmi), I8(1),
1292
  /* 1058 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(172),
1293
  /* 1065 S> */ B(LdaSmi), I8(1),
1294
  /* 1070 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(174),
1295
  /* 1077 S> */ B(LdaSmi), I8(1),
1296
  /* 1082 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(176),
1297
  /* 1089 S> */ B(LdaSmi), I8(1),
1298
  /* 1094 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(178),
1299
  /* 1101 S> */ B(LdaSmi), I8(1),
1300
  /* 1106 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(180),
1301
  /* 1113 S> */ B(LdaSmi), I8(1),
1302
  /* 1118 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(182),
1303
  /* 1125 S> */ B(LdaSmi), I8(1),
1304
  /* 1130 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(184),
1305
  /* 1137 S> */ B(LdaSmi), I8(1),
1306
  /* 1142 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(186),
1307
  /* 1149 S> */ B(LdaSmi), I8(1),
1308
  /* 1154 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(188),
1309
  /* 1161 S> */ B(LdaSmi), I8(1),
1310
  /* 1166 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(190),
1311
  /* 1173 S> */ B(LdaSmi), I8(1),
1312
  /* 1178 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(192),
1313
  /* 1185 S> */ B(LdaSmi), I8(1),
1314
  /* 1190 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(194),
1315
  /* 1197 S> */ B(LdaSmi), I8(1),
1316
  /* 1202 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(196),
1317
  /* 1209 S> */ B(LdaSmi), I8(1),
1318
  /* 1214 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(198),
1319
  /* 1221 S> */ B(LdaSmi), I8(1),
1320
  /* 1226 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(200),
1321
  /* 1233 S> */ B(LdaSmi), I8(1),
1322
  /* 1238 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(202),
1323
  /* 1245 S> */ B(LdaSmi), I8(1),
1324
  /* 1250 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(204),
1325
  /* 1257 S> */ B(LdaSmi), I8(1),
1326
  /* 1262 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(206),
1327
  /* 1269 S> */ B(LdaSmi), I8(1),
1328
  /* 1274 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(208),
1329
  /* 1281 S> */ B(LdaSmi), I8(1),
1330
  /* 1286 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(210),
1331
  /* 1293 S> */ B(LdaSmi), I8(1),
1332
  /* 1298 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(212),
1333
  /* 1305 S> */ B(LdaSmi), I8(1),
1334
  /* 1310 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(214),
1335
  /* 1317 S> */ B(LdaSmi), I8(1),
1336
  /* 1322 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(216),
1337
  /* 1329 S> */ B(LdaSmi), I8(1),
1338
  /* 1334 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(218),
1339
  /* 1341 S> */ B(LdaSmi), I8(1),
1340
  /* 1346 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(220),
1341
  /* 1353 S> */ B(LdaSmi), I8(1),
1342
  /* 1358 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(222),
1343
  /* 1365 S> */ B(LdaSmi), I8(1),
1344
  /* 1370 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(224),
1345
  /* 1377 S> */ B(LdaSmi), I8(1),
1346
  /* 1382 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(226),
1347
  /* 1389 S> */ B(LdaSmi), I8(1),
1348
  /* 1394 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(228),
1349
  /* 1401 S> */ B(LdaSmi), I8(1),
1350
  /* 1406 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(230),
1351
  /* 1413 S> */ B(LdaSmi), I8(1),
1352
  /* 1418 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(232),
1353
  /* 1425 S> */ B(LdaSmi), I8(1),
1354
  /* 1430 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(234),
1355
  /* 1437 S> */ B(LdaSmi), I8(1),
1356
  /* 1442 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(236),
1357
  /* 1449 S> */ B(LdaSmi), I8(1),
1358
  /* 1454 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(238),
1359
  /* 1461 S> */ B(LdaSmi), I8(1),
1360
  /* 1466 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(240),
1361
  /* 1473 S> */ B(LdaSmi), I8(1),
1362
  /* 1478 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(242),
1363
  /* 1485 S> */ B(LdaSmi), I8(1),
1364
  /* 1490 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(244),
1365
  /* 1497 S> */ B(LdaSmi), I8(1),
1366
  /* 1502 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(246),
1367
  /* 1509 S> */ B(LdaSmi), I8(1),
1368
  /* 1514 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(248),
1369
  /* 1521 S> */ B(LdaSmi), I8(1),
1370
  /* 1526 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(250),
1371
  /* 1533 S> */ B(LdaSmi), I8(1),
1372
  /* 1538 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(252),
1373
  /* 1545 S> */ B(LdaSmi), I8(1),
1374
  /* 1550 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(254),
1375
  /* 1557 S> */ B(LdaSmi), I8(2),
1376
  /* 1562 E> */ B(Wide), B(SetKeyedProperty), R16(arg0), R16(arg1), U16(256),
1377 1378
                B(LdaUndefined),
  /* 1567 S> */ B(Return),
1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520
]
constant pool: [
]
handlers: [
]

---
snippet: "
  function f(a, b) {
    'use strict';
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 1;
    a[b] = 2;
  }
  f({name : \"test\"})
"
1521
frame size: 0
1522
parameter count: 3
1523
bytecode array length: 780
1524
bytecodes: [
1525
  /*   37 S> */ B(LdaSmi), I8(1),
1526
  /*   42 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(0),
1527
  /*   49 S> */ B(LdaSmi), I8(1),
1528
  /*   54 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(2),
1529
  /*   61 S> */ B(LdaSmi), I8(1),
1530
  /*   66 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(4),
1531
  /*   73 S> */ B(LdaSmi), I8(1),
1532
  /*   78 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(6),
1533
  /*   85 S> */ B(LdaSmi), I8(1),
1534
  /*   90 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(8),
1535
  /*   97 S> */ B(LdaSmi), I8(1),
1536
  /*  102 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(10),
1537
  /*  109 S> */ B(LdaSmi), I8(1),
1538
  /*  114 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(12),
1539
  /*  121 S> */ B(LdaSmi), I8(1),
1540
  /*  126 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(14),
1541
  /*  133 S> */ B(LdaSmi), I8(1),
1542
  /*  138 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(16),
1543
  /*  145 S> */ B(LdaSmi), I8(1),
1544
  /*  150 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(18),
1545
  /*  157 S> */ B(LdaSmi), I8(1),
1546
  /*  162 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(20),
1547
  /*  169 S> */ B(LdaSmi), I8(1),
1548
  /*  174 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(22),
1549
  /*  181 S> */ B(LdaSmi), I8(1),
1550
  /*  186 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(24),
1551
  /*  193 S> */ B(LdaSmi), I8(1),
1552
  /*  198 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(26),
1553
  /*  205 S> */ B(LdaSmi), I8(1),
1554
  /*  210 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(28),
1555
  /*  217 S> */ B(LdaSmi), I8(1),
1556
  /*  222 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(30),
1557
  /*  229 S> */ B(LdaSmi), I8(1),
1558
  /*  234 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(32),
1559
  /*  241 S> */ B(LdaSmi), I8(1),
1560
  /*  246 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(34),
1561
  /*  253 S> */ B(LdaSmi), I8(1),
1562
  /*  258 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(36),
1563
  /*  265 S> */ B(LdaSmi), I8(1),
1564
  /*  270 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(38),
1565
  /*  277 S> */ B(LdaSmi), I8(1),
1566
  /*  282 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(40),
1567
  /*  289 S> */ B(LdaSmi), I8(1),
1568
  /*  294 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(42),
1569
  /*  301 S> */ B(LdaSmi), I8(1),
1570
  /*  306 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(44),
1571
  /*  313 S> */ B(LdaSmi), I8(1),
1572
  /*  318 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(46),
1573
  /*  325 S> */ B(LdaSmi), I8(1),
1574
  /*  330 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(48),
1575
  /*  337 S> */ B(LdaSmi), I8(1),
1576
  /*  342 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(50),
1577
  /*  349 S> */ B(LdaSmi), I8(1),
1578
  /*  354 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(52),
1579
  /*  361 S> */ B(LdaSmi), I8(1),
1580
  /*  366 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(54),
1581
  /*  373 S> */ B(LdaSmi), I8(1),
1582
  /*  378 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(56),
1583
  /*  385 S> */ B(LdaSmi), I8(1),
1584
  /*  390 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(58),
1585
  /*  397 S> */ B(LdaSmi), I8(1),
1586
  /*  402 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(60),
1587
  /*  409 S> */ B(LdaSmi), I8(1),
1588
  /*  414 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(62),
1589
  /*  421 S> */ B(LdaSmi), I8(1),
1590
  /*  426 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(64),
1591
  /*  433 S> */ B(LdaSmi), I8(1),
1592
  /*  438 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(66),
1593
  /*  445 S> */ B(LdaSmi), I8(1),
1594
  /*  450 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(68),
1595
  /*  457 S> */ B(LdaSmi), I8(1),
1596
  /*  462 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(70),
1597
  /*  469 S> */ B(LdaSmi), I8(1),
1598
  /*  474 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(72),
1599
  /*  481 S> */ B(LdaSmi), I8(1),
1600
  /*  486 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(74),
1601
  /*  493 S> */ B(LdaSmi), I8(1),
1602
  /*  498 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(76),
1603
  /*  505 S> */ B(LdaSmi), I8(1),
1604
  /*  510 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(78),
1605
  /*  517 S> */ B(LdaSmi), I8(1),
1606
  /*  522 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(80),
1607
  /*  529 S> */ B(LdaSmi), I8(1),
1608
  /*  534 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(82),
1609
  /*  541 S> */ B(LdaSmi), I8(1),
1610
  /*  546 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(84),
1611
  /*  553 S> */ B(LdaSmi), I8(1),
1612
  /*  558 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(86),
1613
  /*  565 S> */ B(LdaSmi), I8(1),
1614
  /*  570 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(88),
1615
  /*  577 S> */ B(LdaSmi), I8(1),
1616
  /*  582 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(90),
1617
  /*  589 S> */ B(LdaSmi), I8(1),
1618
  /*  594 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(92),
1619
  /*  601 S> */ B(LdaSmi), I8(1),
1620
  /*  606 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(94),
1621
  /*  613 S> */ B(LdaSmi), I8(1),
1622
  /*  618 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(96),
1623
  /*  625 S> */ B(LdaSmi), I8(1),
1624
  /*  630 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(98),
1625
  /*  637 S> */ B(LdaSmi), I8(1),
1626
  /*  642 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(100),
1627
  /*  649 S> */ B(LdaSmi), I8(1),
1628
  /*  654 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(102),
1629
  /*  661 S> */ B(LdaSmi), I8(1),
1630
  /*  666 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(104),
1631
  /*  673 S> */ B(LdaSmi), I8(1),
1632
  /*  678 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(106),
1633
  /*  685 S> */ B(LdaSmi), I8(1),
1634
  /*  690 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(108),
1635
  /*  697 S> */ B(LdaSmi), I8(1),
1636
  /*  702 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(110),
1637
  /*  709 S> */ B(LdaSmi), I8(1),
1638
  /*  714 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(112),
1639
  /*  721 S> */ B(LdaSmi), I8(1),
1640
  /*  726 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(114),
1641
  /*  733 S> */ B(LdaSmi), I8(1),
1642
  /*  738 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(116),
1643
  /*  745 S> */ B(LdaSmi), I8(1),
1644
  /*  750 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(118),
1645
  /*  757 S> */ B(LdaSmi), I8(1),
1646
  /*  762 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(120),
1647
  /*  769 S> */ B(LdaSmi), I8(1),
1648
  /*  774 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(122),
1649
  /*  781 S> */ B(LdaSmi), I8(1),
1650
  /*  786 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(124),
1651
  /*  793 S> */ B(LdaSmi), I8(1),
1652
  /*  798 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(126),
1653
  /*  805 S> */ B(LdaSmi), I8(1),
1654
  /*  810 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(128),
1655
  /*  817 S> */ B(LdaSmi), I8(1),
1656
  /*  822 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(130),
1657
  /*  829 S> */ B(LdaSmi), I8(1),
1658
  /*  834 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(132),
1659
  /*  841 S> */ B(LdaSmi), I8(1),
1660
  /*  846 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(134),
1661
  /*  853 S> */ B(LdaSmi), I8(1),
1662
  /*  858 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(136),
1663
  /*  865 S> */ B(LdaSmi), I8(1),
1664
  /*  870 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(138),
1665
  /*  877 S> */ B(LdaSmi), I8(1),
1666
  /*  882 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(140),
1667
  /*  889 S> */ B(LdaSmi), I8(1),
1668
  /*  894 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(142),
1669
  /*  901 S> */ B(LdaSmi), I8(1),
1670
  /*  906 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(144),
1671
  /*  913 S> */ B(LdaSmi), I8(1),
1672
  /*  918 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(146),
1673
  /*  925 S> */ B(LdaSmi), I8(1),
1674
  /*  930 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(148),
1675
  /*  937 S> */ B(LdaSmi), I8(1),
1676
  /*  942 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(150),
1677
  /*  949 S> */ B(LdaSmi), I8(1),
1678
  /*  954 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(152),
1679
  /*  961 S> */ B(LdaSmi), I8(1),
1680
  /*  966 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(154),
1681
  /*  973 S> */ B(LdaSmi), I8(1),
1682
  /*  978 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(156),
1683
  /*  985 S> */ B(LdaSmi), I8(1),
1684
  /*  990 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(158),
1685
  /*  997 S> */ B(LdaSmi), I8(1),
1686
  /* 1002 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(160),
1687
  /* 1009 S> */ B(LdaSmi), I8(1),
1688
  /* 1014 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(162),
1689
  /* 1021 S> */ B(LdaSmi), I8(1),
1690
  /* 1026 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(164),
1691
  /* 1033 S> */ B(LdaSmi), I8(1),
1692
  /* 1038 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(166),
1693
  /* 1045 S> */ B(LdaSmi), I8(1),
1694
  /* 1050 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(168),
1695
  /* 1057 S> */ B(LdaSmi), I8(1),
1696
  /* 1062 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(170),
1697
  /* 1069 S> */ B(LdaSmi), I8(1),
1698
  /* 1074 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(172),
1699
  /* 1081 S> */ B(LdaSmi), I8(1),
1700
  /* 1086 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(174),
1701
  /* 1093 S> */ B(LdaSmi), I8(1),
1702
  /* 1098 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(176),
1703
  /* 1105 S> */ B(LdaSmi), I8(1),
1704
  /* 1110 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(178),
1705
  /* 1117 S> */ B(LdaSmi), I8(1),
1706
  /* 1122 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(180),
1707
  /* 1129 S> */ B(LdaSmi), I8(1),
1708
  /* 1134 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(182),
1709
  /* 1141 S> */ B(LdaSmi), I8(1),
1710
  /* 1146 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(184),
1711
  /* 1153 S> */ B(LdaSmi), I8(1),
1712
  /* 1158 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(186),
1713
  /* 1165 S> */ B(LdaSmi), I8(1),
1714
  /* 1170 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(188),
1715
  /* 1177 S> */ B(LdaSmi), I8(1),
1716
  /* 1182 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(190),
1717
  /* 1189 S> */ B(LdaSmi), I8(1),
1718
  /* 1194 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(192),
1719
  /* 1201 S> */ B(LdaSmi), I8(1),
1720
  /* 1206 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(194),
1721
  /* 1213 S> */ B(LdaSmi), I8(1),
1722
  /* 1218 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(196),
1723
  /* 1225 S> */ B(LdaSmi), I8(1),
1724
  /* 1230 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(198),
1725
  /* 1237 S> */ B(LdaSmi), I8(1),
1726
  /* 1242 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(200),
1727
  /* 1249 S> */ B(LdaSmi), I8(1),
1728
  /* 1254 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(202),
1729
  /* 1261 S> */ B(LdaSmi), I8(1),
1730
  /* 1266 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(204),
1731
  /* 1273 S> */ B(LdaSmi), I8(1),
1732
  /* 1278 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(206),
1733
  /* 1285 S> */ B(LdaSmi), I8(1),
1734
  /* 1290 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(208),
1735
  /* 1297 S> */ B(LdaSmi), I8(1),
1736
  /* 1302 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(210),
1737
  /* 1309 S> */ B(LdaSmi), I8(1),
1738
  /* 1314 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(212),
1739
  /* 1321 S> */ B(LdaSmi), I8(1),
1740
  /* 1326 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(214),
1741
  /* 1333 S> */ B(LdaSmi), I8(1),
1742
  /* 1338 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(216),
1743
  /* 1345 S> */ B(LdaSmi), I8(1),
1744
  /* 1350 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(218),
1745
  /* 1357 S> */ B(LdaSmi), I8(1),
1746
  /* 1362 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(220),
1747
  /* 1369 S> */ B(LdaSmi), I8(1),
1748
  /* 1374 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(222),
1749
  /* 1381 S> */ B(LdaSmi), I8(1),
1750
  /* 1386 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(224),
1751
  /* 1393 S> */ B(LdaSmi), I8(1),
1752
  /* 1398 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(226),
1753
  /* 1405 S> */ B(LdaSmi), I8(1),
1754
  /* 1410 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(228),
1755
  /* 1417 S> */ B(LdaSmi), I8(1),
1756
  /* 1422 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(230),
1757
  /* 1429 S> */ B(LdaSmi), I8(1),
1758
  /* 1434 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(232),
1759
  /* 1441 S> */ B(LdaSmi), I8(1),
1760
  /* 1446 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(234),
1761
  /* 1453 S> */ B(LdaSmi), I8(1),
1762
  /* 1458 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(236),
1763
  /* 1465 S> */ B(LdaSmi), I8(1),
1764
  /* 1470 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(238),
1765
  /* 1477 S> */ B(LdaSmi), I8(1),
1766
  /* 1482 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(240),
1767
  /* 1489 S> */ B(LdaSmi), I8(1),
1768
  /* 1494 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(242),
1769
  /* 1501 S> */ B(LdaSmi), I8(1),
1770
  /* 1506 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(244),
1771
  /* 1513 S> */ B(LdaSmi), I8(1),
1772
  /* 1518 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(246),
1773
  /* 1525 S> */ B(LdaSmi), I8(1),
1774
  /* 1530 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(248),
1775
  /* 1537 S> */ B(LdaSmi), I8(1),
1776
  /* 1542 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(250),
1777
  /* 1549 S> */ B(LdaSmi), I8(1),
1778
  /* 1554 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(252),
1779
  /* 1561 S> */ B(LdaSmi), I8(1),
1780
  /* 1566 E> */ B(SetKeyedProperty), R(arg0), R(arg1), U8(254),
1781
  /* 1573 S> */ B(LdaSmi), I8(2),
1782
  /* 1578 E> */ B(Wide), B(SetKeyedProperty), R16(arg0), R16(arg1), U16(256),
1783 1784
                B(LdaUndefined),
  /* 1583 S> */ B(Return),
1785 1786 1787 1788 1789 1790
]
constant pool: [
]
handlers: [
]