Does anyone know why I'm getting this error when trying to use the conditional breakpoint? "Unable to evaluate breakpoint condition '(()=>{try{return i == 2;}catch(e){console.error(`Breakpoint condition error: ${e.message||e}`);return false}})()': [ReferenceError] Failed to resolve member access for e.message"
Does anyone know why I'm getting this error when trying to use the conditional breakpoint? "Unable to evaluate breakpoint condition '(()=>{try{return i == 2;}catch(e){console.error(`Breakpoint condition error: ${e.message||e}`);return false}})()': [ReferenceError] Failed to resolve member access for e.message"
3 months late but this is what I think
e.message is causing the problem, maybe its because there is no field called message on the thrown exception.