summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/WeakSetConstructor.cpp
AgeCommit message (Collapse)Author
2021-06-28LibJS: Accept FlyStrings in the NativeFunction constructorsIdan Horowitz
This makes the implicit run-time assertion in PropertyName::to_string() into an explicit compile-time requirement, removes a wasteful FlyString -> PropertyName -> FlyString construction from NativeFunction::create() and allows setting the function name to a null string for anonymous native functions.
2021-06-27LibJS: Rename Function => FunctionObjectAndreas Kling
2021-06-20LibJS: Use OrdinaryCreateFromConstructor() in a bunch of constructorsLinus Groh
Resolves various FIXMEs :^)
2021-06-19LibJS: Add a bunch more missing ECMA-262 section/title/URL commentsLinus Groh
2021-06-09LibJS: Add the WeakSet built-in objectIdan Horowitz