fix: do not panic when using methods on classes and interfaces in deno doc html output (#26100)

Fixes #26107
This commit is contained in:
Leo Kettmeir 2024-10-10 03:35:22 -07:00 committed by GitHub
parent 251840a60d
commit 06aadcd22b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@ -1504,9 +1504,9 @@ dependencies = [
[[package]]
name = "deno_doc"
version = "0.152.0"
version = "0.153.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8d237256ad99d6064b271324485120028e843329fd0fa0e93175d5e98f17033"
checksum = "6925db7ad16bee4bdcb7e654d2475e2fbd5e1d7dd4c6ee5f030ee858b4a2a8ee"
dependencies = [
"anyhow",
"cfg-if",

View File

@ -67,7 +67,7 @@ deno_ast = { workspace = true, features = ["bundler", "cjs", "codegen", "proposa
deno_cache_dir = { workspace = true }
deno_config = { version = "=0.37.1", features = ["workspace", "sync"] }
deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] }
deno_doc = { version = "0.152.0", features = ["html"] }
deno_doc = { version = "0.153.0", features = ["html"] }
deno_graph = { version = "=0.83.3" }
deno_lint = { version = "=0.67.0", features = ["docs"] }
deno_lockfile.workspace = true