1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:17:35 +00:00

LibJS: Implement Atomics.or

This commit is contained in:
Timothy Flynn 2021-07-11 13:20:28 -04:00 committed by Linus Groh
parent 2d3af5c1b4
commit f9d8e234b2
4 changed files with 91 additions and 0 deletions

View file

@ -22,6 +22,7 @@ private:
JS_DECLARE_NATIVE_FUNCTION(add);
JS_DECLARE_NATIVE_FUNCTION(and_);
JS_DECLARE_NATIVE_FUNCTION(load);
JS_DECLARE_NATIVE_FUNCTION(or_);
};
}