myuon/quartz

dereference captured variables

myuon opened this issue · 0 comments

myuon commented
let a = ...;

k(a); // <- here

let f = fun () {
  a;
};