Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion runtime/interpreter/src/operations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ pub fn eval_unary(op: &str, right: RuntimeValue) -> Result<RuntimeValue, Runtime
if let RuntimeValue::Str(s) = &state {
if s == "pending" {
techscript_stdlib::async_runtime::tick();
std::thread::sleep(std::time::Duration::from_millis(1));
std::thread::yield_now();
continue;
} else if s == "resolved" {
let val = entries
Expand Down
Loading