Closed
Description
This issue was originally filed by [email protected]
Set breakpoint on line "return this._b". Hit step into.
Expected: debugger steps into bar().
Actual: debugger is paused on "int _b".
class A {
int _b;
void foo() {
return bar(this._b);
}
}