mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
13 lines
337 B
JavaScript
13 lines
337 B
JavaScript
var was_called = false;
|
|
function thisShouldBeCalled() {
|
|
was_called = true;
|
|
}
|
|
thisShouldBeCalled();
|
|
export function test() {
|
|
if (!was_called)
|
|
throw new Error("Expected thisShouldBeCalled to be called");
|
|
return testDone(import.meta.url);
|
|
}
|
|
|
|
//# sourceMappingURL=http://localhost:8080/void-shouldnt-delete-call-expressions.js.map
|