Timothy Flynn
9bbd3103a8
LibJS: Include identifier information in nullish property read access
...
When a GetById / GetByValue bytecode operation results in accessing a
nullish object, we now include the name of the property and the object
being accessed in the exception message (if available). This should make
it easier to debug live websites.
For example, the following errors would all previously produce a generic
error message of "ToObject on null or undefined":
> foo = null
> foo.bar
Uncaught exception:
[TypeError] Cannot access property "bar" on null object "foo"
at <unknown>
> foo = { bar: undefined }
> foo.bar.baz
Uncaught exception:
[TypeError] Cannot access property "baz" on undefined object "foo.bar"
at <unknown>
Note we certainly don't capture all possible nullish property read
accesses here. This just covers cases I've seen most on live websites;
we can cover more cases as they arise.
2024-03-29 21:57:19 +01:00
..
2024-02-03 14:07:26 -05:00
2024-03-26 17:22:46 -04:00
2024-02-19 21:45:27 +01:00
2024-02-06 08:45:34 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-30 09:51:46 -05:00
2023-11-30 09:51:46 -05:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-17 18:25:10 +03:30
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-17 18:25:10 +03:30
2024-03-08 16:31:21 +01:00
2024-02-27 20:02:07 +01:00
2024-02-27 20:02:07 +01:00
2023-12-26 11:16:10 +01:00
2023-11-19 12:10:31 +01:00
2023-12-29 09:25:41 +01:00
2023-12-26 11:16:10 +01:00
2024-02-03 14:07:26 -05:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-09 00:20:25 +01:00
2023-12-26 11:16:10 +01:00
2023-11-19 12:10:31 +01:00
2023-12-17 18:25:10 +03:30
2023-11-19 12:10:31 +01:00
2023-12-07 14:06:34 +01:00
2023-12-07 14:06:34 +01:00
2023-12-23 23:02:10 +01:00
2023-12-07 14:06:34 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-12-13 11:19:13 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-13 11:19:13 +01:00
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-26 11:16:10 +01:00
2023-11-30 09:51:46 -05:00
2023-11-19 12:10:31 +01:00
2023-12-17 18:25:10 +03:30
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-17 18:25:10 +03:30
2023-11-29 09:48:18 +01:00
2023-12-26 11:16:10 +01:00
2024-02-13 19:44:44 +01:00
2024-02-28 21:09:09 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-26 11:16:10 +01:00
2023-12-26 11:16:10 +01:00
2023-12-26 11:16:10 +01:00
2023-11-19 12:10:31 +01:00
2023-12-26 11:16:10 +01:00
2023-11-19 12:10:31 +01:00
2024-01-12 09:11:18 +01:00
2024-01-12 09:11:18 +01:00
2024-02-03 09:29:40 +01:00
2023-11-19 12:10:31 +01:00
2023-12-17 18:25:10 +03:30
2023-12-17 18:25:10 +03:30
2023-11-19 12:10:31 +01:00
2024-02-29 09:00:00 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2024-02-24 15:06:52 -07:00
2024-01-21 21:03:59 +01:00
2024-02-29 09:00:00 +01:00
2024-02-29 09:00:00 +01:00
2023-12-17 18:25:10 +03:30
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2024-03-29 21:57:19 +01:00
2023-12-13 11:19:13 +01:00
2024-02-29 09:00:00 +01:00
2024-03-16 14:27:06 +01:00
2024-03-16 14:27:06 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2024-03-16 14:27:06 +01:00
2023-11-19 12:10:31 +01:00
2023-12-17 18:25:10 +03:30
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-17 18:25:10 +03:30
2023-11-29 09:48:18 +01:00
2023-12-17 18:25:10 +03:30
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-13 11:19:13 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2024-02-29 09:00:00 +01:00
2023-12-17 18:25:10 +03:30
2023-11-19 12:10:31 +01:00
2023-11-10 08:22:44 +01:00
2024-02-29 09:00:00 +01:00
2023-12-08 00:54:05 +01:00
2023-12-08 00:54:05 +01:00
2024-02-03 14:07:26 -05:00
2024-02-03 14:07:26 -05:00
2023-12-07 14:06:34 +01:00
2023-11-19 12:10:31 +01:00
2023-12-07 14:06:34 +01:00
2023-12-07 14:06:34 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-07 14:06:34 +01:00
2023-11-19 12:10:31 +01:00
2024-03-16 14:27:06 +01:00
2024-03-16 14:27:06 +01:00
2024-01-21 15:47:53 -07:00
2023-12-17 18:25:10 +03:30
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-26 12:07:50 -05:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-01 13:01:26 +01:00
2023-12-01 13:01:26 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-17 18:25:10 +03:30
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-17 18:25:10 +03:30
2023-11-19 12:10:31 +01:00
2024-01-14 16:08:52 -07:00
2024-02-29 09:00:00 +01:00
2023-12-26 12:07:50 -05:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2024-02-29 09:00:00 +01:00
2023-12-17 18:25:10 +03:30
2023-11-19 12:10:31 +01:00
2024-02-24 15:06:52 -07:00
2023-12-17 18:25:10 +03:30
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2024-03-16 14:27:06 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2024-02-03 14:07:26 -05:00
2023-11-19 12:10:31 +01:00
2024-03-26 05:47:24 +01:00
2024-03-26 05:47:24 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2024-03-16 14:27:06 +01:00
2024-03-16 14:27:06 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-17 18:25:10 +03:30
2023-10-07 07:13:52 +02:00
2024-02-24 15:06:52 -07:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-17 18:25:10 +03:30
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00
2024-02-29 09:00:00 +01:00
2024-01-27 13:11:18 -05:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-17 18:25:10 +03:30
2023-12-17 18:25:10 +03:30
2023-12-17 18:25:10 +03:30
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-17 18:25:10 +03:30
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2024-02-03 14:07:26 -05:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-10-07 07:13:52 +02:00
2024-02-19 21:45:27 +01:00
2023-12-17 18:25:10 +03:30
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-12-17 18:25:10 +03:30
2023-11-19 12:10:31 +01:00
2023-12-16 14:25:58 +01:00
2023-12-16 14:25:58 +01:00
2023-12-26 11:16:10 +01:00
2023-11-19 12:10:31 +01:00
2023-12-29 09:25:41 +01:00
2023-11-19 12:10:31 +01:00
2023-12-17 18:25:10 +03:30
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2024-02-24 15:06:52 -07:00
2024-01-04 12:43:10 +01:00
2024-01-04 12:43:10 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-23 23:02:10 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2024-02-28 19:41:11 +01:00
2024-02-28 19:41:11 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2024-03-26 17:11:26 -04:00
2023-11-19 12:10:31 +01:00
2023-12-17 18:25:10 +03:30
2023-12-17 18:25:10 +03:30
2024-03-04 20:54:51 +01:00
2024-03-04 20:54:51 +01:00
2023-10-07 07:13:52 +02:00
2023-12-17 18:25:10 +03:30
2024-03-26 05:47:24 +01:00
2024-03-26 05:47:24 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-17 18:25:10 +03:30
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2024-02-03 14:07:26 -05:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00