microsoft / microsoft/vscode-java-debug
Stepping over a false conditional breakpoint stops the stepping and just continues.
オープン
まだ誰も着手していません。
ai-triaged
bug
- 主要言語
- TypeScript
- スター
- 591
- フォーク
- 429
- 平均マージ
- 1日 9時間
- マージ済み PR(30日)
- 19
説明
public class DebugTest {
public static void main(String[] args) {
int x = 0;
foo();
x++;
x++;
}
public static void foo() {
int y = 0;
}
}
With this example In put a conditional breakpoint with condition false on int y= 0. Then I put a breakpoint on int x = 0; and used Step Over. After stepping over foo I didn't hit the later lines and the program just continues. Disabling the conditional breakpoint makes stepping over work as I would expect (went from foo() to x++).
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
まず、int y = 0 に偽の条件付きブレークポイントを設定して vscode-java-debug の Java の例を再現し、その後、そのブレークポイントを無効にした場合の Step Over の動作と比較します。foo() からステップ実行したときに、実行を続行するのではなく後続の x++ 行に到達すれば、修正は完了です。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- java, typescript
- 領域
- devtools
- issue の種類
- バグ
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 45/100