They only work with vars.
It works in latest ToT at least with following code: (function() { var c = 1; let a = 2; let b = 3; let {d} = {d: 5}; console.log(a, b, c); debugger; })()
Comment 1 by kozy@chromium.org
, Sep 25It works in latest ToT at least with following code: (function() { var c = 1; let a = 2; let b = 3; let {d} = {d: 5}; console.log(a, b, c); debugger; })()