testing #43836:
Use this code:
let i = 0;
func = function() {
console.log("hello world: " + i++);
}
setInterval(x => {
func();
}, 1000);
and this launch.json:
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/hello.js",
"runtimeVersion": "7.10.1"
}
- add a function breakpoint for "func"
- add a function breakpoint for "setInterval"
- F5
Observe:
"setInterval" is hit and "func" loses its red triangle.
I would expect that "func" gets an unverified icon.
testing #43836:
Use this code:
and this launch.json:
{ "type": "node", "request": "launch", "name": "Launch Program", "program": "${workspaceFolder}/hello.js", "runtimeVersion": "7.10.1" }Observe:
"setInterval" is hit and "func" loses its red triangle.
I would expect that "func" gets an unverified icon.