New issue
Advanced search Search tips

Issue 832143 link

Starred by 0 users

Issue metadata

Status: Fixed
Owner:
Closed: Sep 25
Components:
EstimatedDays: ----
NextAction: ----
OS: ----
Pri: 1
Type: Bug



Sign in to add a comment

DevTools: inline variable values do not work with let/const

Project Member Reported by dgozman@chromium.org, Apr 12 2018

Issue description

They only work with vars.
 
Status: Fixed (was: Assigned)
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;
})()

Sign in to add a comment