We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32a54b2 commit 41730a6Copy full SHA for 41730a6
.github/workflows/ci.yaml
@@ -216,13 +216,6 @@ jobs:
216
- name: Check compilation for freebsd
217
run: cargo check --target x86_64-unknown-freebsd
218
219
- - uses: dtolnay/rust-toolchain@stable
220
- with:
221
- target: wasm32-unknown-unknown
222
-
223
- - name: Check compilation for wasm32
224
- run: cargo check --target wasm32-unknown-unknown --no-default-features
225
226
- uses: dtolnay/rust-toolchain@stable
227
with:
228
target: x86_64-unknown-freebsd
stdlib/src/dis.rs
@@ -36,6 +36,7 @@ mod decl {
36
// String:
37
#[cfg(feature = "compiler")]
38
{
39
+ use crate::vm::compiler;
40
vm.compile(co_str.as_str(), compiler::Mode::Exec, "<dis>".to_owned())
41
.map_err(|err| vm.new_syntax_error(&err))?
42
}
0 commit comments