fix(fast_check): analyze identifiers in type assertions/as exprs (#21899)

Closes #21894
This commit is contained in:
David Sherret 2024-01-11 11:55:26 -05:00 committed by GitHub
parent 70ac06138c
commit 686141163f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

8
Cargo.lock generated
View file

@ -1322,9 +1322,9 @@ dependencies = [
[[package]]
name = "deno_graph"
version = "0.63.2"
version = "0.63.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b2fce4e5ae279e181e53a3fa0e9018956356d6b977cc741b665eebe5398a01c"
checksum = "d7cf16929b6a267be4bc535877303a3a36b3595b6b27543baa07d3b77b679d92"
dependencies = [
"anyhow",
"async-trait",
@ -6910,7 +6910,7 @@ dependencies = [
"codespan-reporting",
"log",
"naga",
"parking_lot 0.11.2",
"parking_lot 0.12.1",
"profiling",
"raw-window-handle",
"ron",
@ -6951,7 +6951,7 @@ dependencies = [
"naga",
"objc",
"once_cell",
"parking_lot 0.11.2",
"parking_lot 0.12.1",
"profiling",
"range-alloc",
"raw-window-handle",

View file

@ -59,7 +59,7 @@ deno_config = "=0.6.5"
deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] }
deno_doc = { version = "=0.89.1", features = ["html"] }
deno_emit = "=0.33.0"
deno_graph = "=0.63.2"
deno_graph = "=0.63.3"
deno_lint = { version = "=0.53.0", features = ["docs"] }
deno_lockfile.workspace = true
deno_npm = "=0.15.3"