1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:37:45 +00:00

LibJS: Implement Atomics.store

This commit is contained in:
Timothy Flynn 2021-07-11 14:37:54 -04:00 committed by Linus Groh
parent b6364ec899
commit 6211eb0f9a
4 changed files with 99 additions and 0 deletions

View file

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