Skip to content

Commit 4c682aa

Browse files
committed
chore: Add missing feature flag
1 parent de84152 commit 4c682aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
strategy:
117117
fail-fast: false
118118
matrix:
119-
feature: [capture-io, "cli,doc", "cli,fmt", cli, workspace, languageserver, byte-code]
119+
feature: [capture-io, "cli,doc", "cli,fmt", cli, workspace, languageserver, byte-code, emit]
120120
env:
121121
RUSTFLAGS: -D warnings
122122
steps:

crates/rune/src/compile/context.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ impl Context {
478478
}
479479

480480
/// Lookup meta by its hash.
481-
#[cfg(any(feature = "cli", feature = "languageserver"))]
481+
#[cfg(any(feature = "cli", feature = "languageserver", feature = "emit"))]
482482
pub(crate) fn lookup_meta_by_hash(
483483
&self,
484484
hash: Hash,

0 commit comments

Comments
 (0)