LibJS: Implement a nearly empty Intl.DisplayNames object

This adds plumbing for the Intl.DisplayNames object, constructor, and
prototype.
This commit is contained in:
Timothy Flynn
2021-08-24 22:27:05 -04:00
committed by Linus Groh
parent 137e98cb6f
commit 0fb4e8b749
Notes: sideshowbarker 2024-07-18 05:15:39 +09:00
12 changed files with 325 additions and 1 deletions

View File

@@ -41,6 +41,8 @@
#include <LibJS/Runtime/GeneratorObjectPrototype.h>
#include <LibJS/Runtime/GlobalEnvironment.h>
#include <LibJS/Runtime/GlobalObject.h>
#include <LibJS/Runtime/Intl/DisplayNamesConstructor.h>
#include <LibJS/Runtime/Intl/DisplayNamesPrototype.h>
#include <LibJS/Runtime/Intl/Intl.h>
#include <LibJS/Runtime/IteratorPrototype.h>
#include <LibJS/Runtime/JSONObject.h>