provegard / ncdbg

A debugger for Nashorn that uses Chrome DevTools as frontend
BSD 3-Clause "New" or "Revised" License
31 stars 5 forks source link

Variables defined in the console are not always remembered #20

Closed provegard closed 7 years ago

provegard commented 7 years ago

Evaluate:

var zz = 55;

Then:

zz

Sometimes, the result is undefined

provegard commented 7 years ago

This happens when evaluating the statements inside a function that has a local scope.