diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2021-06-12 23:54:40 +0300 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-06-13 00:33:18 +0100 |
commit | a96ac8bd56f5a06552ed2a6fe7b21388d5454250 (patch) | |
tree | 3424f68ac39ce4676d3b38dc726c6fa89b5c40c6 /Userland/Libraries/LibJS/Forward.h | |
parent | f9d58ec0b444e7e4ff2f4cd443f8f046e5abf9ae (diff) | |
download | serenity-a96ac8bd56f5a06552ed2a6fe7b21388d5454250.zip |
LibJS: Add the Map built-in object
Diffstat (limited to 'Userland/Libraries/LibJS/Forward.h')
-rw-r--r-- | Userland/Libraries/LibJS/Forward.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Forward.h b/Userland/Libraries/LibJS/Forward.h index 1071f90645..e8350fd584 100644 --- a/Userland/Libraries/LibJS/Forward.h +++ b/Userland/Libraries/LibJS/Forward.h @@ -34,6 +34,7 @@ __JS_ENUMERATE(Date, date, DatePrototype, DateConstructor, void) \ __JS_ENUMERATE(Error, error, ErrorPrototype, ErrorConstructor, void) \ __JS_ENUMERATE(Function, function, FunctionPrototype, FunctionConstructor, void) \ + __JS_ENUMERATE(Map, map, MapPrototype, MapConstructor, void) \ __JS_ENUMERATE(NumberObject, number, NumberPrototype, NumberConstructor, void) \ __JS_ENUMERATE(Object, object, ObjectPrototype, ObjectConstructor, void) \ __JS_ENUMERATE(Promise, promise, PromisePrototype, PromiseConstructor, void) \ |