summaryrefslogtreecommitdiff
path: root/tests/specs/bench/overloads/overloads.ts
blob: 4f5887f7984c2836914eb351cd24a33d6bdb8cb5 (plain)
1
2
3
4
5
6
Deno.bench("bench0", () => {});
Deno.bench(function bench1() {});
Deno.bench({ name: "bench2", fn: () => {} });
Deno.bench("bench3", { permissions: "none" }, () => {});
Deno.bench({ name: "bench4" }, () => {});
Deno.bench({ ignore: true }, function bench5() {});