1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 12:47:45 +00:00

LibJS: Implement Atomics.xor

This commit is contained in:
Timothy Flynn 2021-07-11 13:36:40 -04:00 committed by Linus Groh
parent d2f6255b91
commit b6364ec899
4 changed files with 91 additions and 0 deletions

View file

@ -24,6 +24,7 @@ private:
JS_DECLARE_NATIVE_FUNCTION(load);
JS_DECLARE_NATIVE_FUNCTION(or_);
JS_DECLARE_NATIVE_FUNCTION(sub);
JS_DECLARE_NATIVE_FUNCTION(xor_);
};
}