mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
* 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
* 📷
* 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
14 lines
440 B
JavaScript
14 lines
440 B
JavaScript
export function test() {
|
|
try {
|
|
const multipleSecondaryValues = undefined;
|
|
const ratings = ["123"];
|
|
var bar = multipleSecondaryValues?.map((value) => false);
|
|
bar = bar?.multipleSecondaryValues?.map((value) => false);
|
|
bar = bar?.bar?.multipleSecondaryValues?.map((value) => false);
|
|
bar = {}?.bar?.multipleSecondaryValues?.map((value) => false);
|
|
} catch (e) {
|
|
throw e;
|
|
}
|
|
return testDone(import.meta.url);
|
|
}
|