summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Heap/Handle.cpp
AgeCommit message (Collapse)Author
2022-09-03LibJS: Make Handle<T> more user-friendlyAndreas Kling
Allow *handle, !handle, handle.ptr(), assignment from compatible pointer types, etc. This is in preparation for using Handles in more generated code.
2021-05-17LibJS: Move Cell.{cpp,h} from Runtime/ to Heap/Andreas Kling
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-03-21LibJS: Always inline Cell::vm() and Cell::heap()Andreas Kling
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling