I am working with async and seems every time I try to watch the value of the variable is unable to evaluate.
Steps to reproduce:
* Create console app;
* Write following:
```javascript
// Arrange
var array = [];
for (var i = 0; i < 50000; i++) {
array.push(i);
}
// Act
console.log(array.length);
```
* Put breakpoint on `console.log(array.length)` and add `array` variable to Watch.
AR: evaluation timed out
ER: `array` successfully evaluated
Steps to reproduce:
* Create console app;
* Write following:
```javascript
// Arrange
var array = [];
for (var i = 0; i < 50000; i++) {
array.push(i);
}
// Act
console.log(array.length);
```
* Put breakpoint on `console.log(array.length)` and add `array` variable to Watch.
AR: evaluation timed out
ER: `array` successfully evaluated