Skip to content

Commit

Permalink
fixup! parser: Re-support broadcast
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsamaroo committed Sep 30, 2024
1 parent 16ad1d3 commit 6aab5ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/thunk.jl
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ function _par(mod, ex::Expr; lazy=true, recur=true, opts=())
end
elseif lazy
# Recurse into the expression
return Expr(ex.head, _par_inner.(mod, ex.args, lazy=lazy, recur=recur, opts=opts)...)
return Expr(ex.head, _par_inner.(Ref(mod), ex.args, lazy=lazy, recur=recur, opts=opts)...)
else
throw(ArgumentError("Invalid Dagger task expression: $ex"))
end
Expand Down

0 comments on commit 6aab5ab

Please sign in to comment.