summaryrefslogtreecommitdiff
path: root/cli/tsc
diff options
context:
space:
mode:
authorMatt Mastracci <matthew@mastracci.com>2023-11-05 14:27:36 -0700
committerGitHub <noreply@github.com>2023-11-05 14:27:36 -0700
commit485fade0b6910e29557c6627d37985b47735bf8e (patch)
tree0f6c97c135c8a92226caecb363effe7eabf47936 /cli/tsc
parent4530cd5f0d5e6acdbbb11a60eac711d47f274d3f (diff)
chore: migrate to new deno_core and metrics (#21057)
- Uses the new OpMetrics system for sync and async calls - Partial revert of #21048 as we moved Array.fromAsync upstream to deno_core
Diffstat (limited to 'cli/tsc')
-rw-r--r--cli/tsc/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc/mod.rs b/cli/tsc/mod.rs
index 524719755..22c29a228 100644
--- a/cli/tsc/mod.rs
+++ b/cli/tsc/mod.rs
@@ -948,7 +948,7 @@ mod tests {
.context("Unable to get CWD")
.unwrap(),
);
- let mut op_state = OpState::new(1, None);
+ let mut op_state = OpState::new(None);
op_state.put(state);
op_state
}