Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-03-19 | DevTools+LibJS+LibWeb: Change class_name to use StringView | Lenny Maiorani | |
This helps make the overall codebase consistent. `class_name()` in `Kernel` is always `StringView`, but not elsewhere. Additionally, this results in the `strlen` (which needs to be done when printing or other operations) always being computed at compile-time. | |||
2021-12-08 | LibJS: Mark entire private environment chains during GC | Andreas Kling | |
2021-11-10 | AK+Everywhere: Stop including Vector.h from StringView.h | Andreas Kling | |
Preparation for using Error.h from Vector.h. This required moving some things out of line. | |||
2021-10-25 | LibJS: Add default constructor for PrivateName | Andreas Kling | |
This avoids a round-trip through FlyString("") for every Reference. | |||
2021-10-20 | LibJS: Add PrivateEnvironment | davidot | |