mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 14:54:47 +00:00
make join points use borrow signature
This commit is contained in:
parent
294273283b
commit
b0e4a3fd47
1 changed files with 3 additions and 2 deletions
|
@ -596,11 +596,12 @@ impl<'a> Context<'a> {
|
|||
|
||||
Join {
|
||||
id: j,
|
||||
parameters: xs,
|
||||
parameters: _,
|
||||
remainder: b,
|
||||
continuation: v,
|
||||
} => {
|
||||
let xs = *xs;
|
||||
// get the parameters with borrow signature
|
||||
let xs = self.param_map.get_join_point(*j);
|
||||
|
||||
let v_orig = v;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue