@override void visitWhileStmt(Stmt.While stmt) { _loopDepth++; resolveExpr(stmt.condition); resolveStmt(stmt.body); _loopDepth--; return; }