File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change
1
+ ## version 2.15.2
2
+
3
+ - 有些题目不能 debug 的提示
4
+
1
5
## version 2.15.1
2
6
3
7
- 参考 wangtao0101/vscode-debug-leetcode 添加 debug
Original file line number Diff line number Diff line change 2
2
"name" : " vscode-leetcode-problem-rating" ,
3
3
"displayName" : " LeetCode" ,
4
4
"description" : " %main.description%" ,
5
- "version" : " 2.15.1 " ,
5
+ "version" : " 2.15.2 " ,
6
6
"author" : " ccagml" ,
7
7
"publisher" : " ccagml" ,
8
8
"license" : " MIT" ,
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ class DebugContorller {
27
27
const fileContent : Buffer = fs . readFileSync ( filePath ) ;
28
28
const meta : ProblemMeta | null = fileMeta ( fileContent . toString ( ) ) ;
29
29
if ( ! canDebug ( meta ) ) {
30
+ window . showErrorMessage ( "这题还不能debug 麻烦提issuse" ) ;
30
31
return ;
31
32
}
32
33
let result : any ;
You can’t perform that action at this time.
0 commit comments