aboutsummaryrefslogtreecommitdiff
path: root/integration/snapshots/void-shouldnt-delete-call-expressions.debug.js
blob: 3e088c5a77a2ca7505f0a9b4752d2a9e76493d0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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);
}