diff options
Diffstat (limited to 'cli/bench')
-rw-r--r-- | cli/bench/deno_common.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cli/bench/deno_common.js b/cli/bench/deno_common.js index 31ab05fba..210733c1a 100644 --- a/cli/bench/deno_common.js +++ b/cli/bench/deno_common.js @@ -7,7 +7,6 @@ Deno.bench("date_now", { n: 5e5 }, () => { // Fast API calls { - // deno-lint-ignore camelcase const { op_add } = Deno[Deno.internal].core.ops; // deno-lint-ignore no-inner-declarations function add(a, b) { @@ -21,7 +20,6 @@ Deno.bench("date_now", { n: 5e5 }, () => { Deno.bench("add_js", () => addJS(1, 2)); } -// deno-lint-ignore camelcase const { op_void_sync } = Deno[Deno.internal].core.ops; function sync() { return op_void_sync(); |