summaryrefslogtreecommitdiff
path: root/cli/bench
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-09-07 08:09:16 -0500
committerGitHub <noreply@github.com>2023-09-07 09:09:16 -0400
commit3fc19dab47492e06043fc7add28e64693a4eb775 (patch)
tree855e952933662aef37bd20c084901ae0e488b2db /cli/bench
parent01a761f1d4f7ff4943fbf80464a276b434d8a8f7 (diff)
feat: support import attributes (#20342)
Diffstat (limited to 'cli/bench')
-rw-r--r--cli/bench/deno_common.js2
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();