1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 04:58:13 +00:00
serenity/Userland/Libraries/LibJS/Tests/modules
davidot e0e4ead2c8 LibJS: Follow the spec with storing im- and export entries
Because we can have arbitrary in- and export names with strings we can
have '*' and '' which means using '*' as an indicating namespace imports
failed / behaved incorrectly for string imports '*'.
We now use more specific types to indicate these special states instead
of these 'magic' string values.

Do note that 'default' is not actually a magic string value but one
specified by the spec. And you can in fact export the default value by
doing: `export { 1 as default }`.
2022-01-30 17:40:20 +00:00
..
basic-export-types.mjs LibJS: Implement ImportCall and HostImportModuleDynamically 2022-01-22 01:21:18 +00:00
basic-modules.js LibJS: Follow the spec with storing im- and export entries 2022-01-30 17:40:20 +00:00
declarations-tests.mjs LibJS: Implement ImportCall and HostImportModuleDynamically 2022-01-22 01:21:18 +00:00
default-and-star-export-indirect.mjs LibJS: Follow the spec with storing im- and export entries 2022-01-30 17:40:20 +00:00
default-and-star-export.mjs LibJS: Follow the spec with storing im- and export entries 2022-01-30 17:40:20 +00:00
empty.mjs LibJS: Implement ImportCall and HostImportModuleDynamically 2022-01-22 01:21:18 +00:00
indirect-export-without-default.mjs LibJS: Follow the spec with storing im- and export entries 2022-01-30 17:40:20 +00:00
loop-a.mjs LibJS: Implement ImportCall and HostImportModuleDynamically 2022-01-22 01:21:18 +00:00
loop-b.mjs LibJS: Implement ImportCall and HostImportModuleDynamically 2022-01-22 01:21:18 +00:00
loop-entry.mjs LibJS: Implement ImportCall and HostImportModuleDynamically 2022-01-22 01:21:18 +00:00
loop-self.mjs LibJS: Implement ImportCall and HostImportModuleDynamically 2022-01-22 01:21:18 +00:00
module-with-default.mjs LibJS: Implement ImportCall and HostImportModuleDynamically 2022-01-22 01:21:18 +00:00
single-const-export.mjs LibJS: Implement ImportCall and HostImportModuleDynamically 2022-01-22 01:21:18 +00:00
string-import-names.mjs LibJS: Follow the spec with storing im- and export entries 2022-01-30 17:40:20 +00:00
string-import-namespace-indirect.mjs LibJS: Follow the spec with storing im- and export entries 2022-01-30 17:40:20 +00:00
string-import-namespace.mjs LibJS: Follow the spec with storing im- and export entries 2022-01-30 17:40:20 +00:00