// Since top-level await is Special, we run these checks in the top-level scope as well. try { require("this-package-should-not-exist"); } catch (exception) {} try { await import("this-package-should-not-exist"); } catch (exception) {} import("this-package-should-not-exist").then( () => {}, () => {}, ); export async function test() { // none of these should error try { require("this-package-should-not-exist"); } catch (exception) {} try { await import("this-package-should-not-exist"); } catch (exception) {} import("this-package-should-not-exist").then( () => {}, () => {}, ); return testDone(import.meta.url); } name='id' value='b1c3fce49b5c761654f4a40612c192210dd5ac64'/> Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/misctools/generate-tests-file.sh (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2021-12-30Upgrade to latest Zig, remove dependency on patched version of Zig (#96)Gravatar Jarred Sumner 154-6271/+4561
* Prepare to upgrade zig * zig fmt * AllocGate * Update data_url.zig * wip * few files * just headers now? * I think everything works? * Update mimalloc * Update hash_map.zig * Perf improvements to compensate for Allocgate * Bump * :camera: * Update bun.lockb * Less branching * [js parser] Slightly reduce memory usage * Update js_parser.zig * WIP remove unused * [JS parser] WIP support for `with` keyword * Remove more dead code * Fix all the build errors! * cleanup * Move `network_thread` up * Bump peechy * Update README.md
2021-12-29zig fmtGravatar Jarred Sumner 5-8/+3
2021-12-29Update MakefileGravatar Jarred Sumner 1-1/+0