objectReplay.baseline 472 B

123456789101112131415161718192021222324
  1. typeof (x): object
  2. typeof (z): object
  3. x === y: true
  4. x !== z: true
  5. y.foo: 3
  6. z.foo: 3
  7. z[1]: bob
  8. z[2]: bob2
  9. x.foo: 3
  10. x.bar: null
  11. x.baz: new prop
  12. x.notPresent: undefined
  13. z[0]: undefined
  14. z[5]: undefined
  15. post update -- z[0]: undefined
  16. post update -- z.foo: 0
  17. post update -- x.foo: 10
  18. post update -- x.foo2: ten
  19. post update -- x[0]: undefined
  20. post update -- x[10]: foo
  21. post update -- y.bar: 3
  22. post update -- x.bar: 3
  23. Reached end of Execution -- Exiting.