File tree Expand file tree Collapse file tree 6 files changed +13
-23
lines changed Expand file tree Collapse file tree 6 files changed +13
-23
lines changed Original file line number Diff line number Diff line change 99 "name" : " Run Extension" ,
1010 "type" : " extensionHost" ,
1111 "request" : " launch" ,
12- "args" : [
13- " --extensionDevelopmentPath=${workspaceFolder}"
14- ],
15- "outFiles" : [
16- " ${workspaceFolder}/dist/**/*.js"
17- ],
12+ "args" : [" --extensionDevelopmentPath=${workspaceFolder}" ],
13+ "outFiles" : [" ${workspaceFolder}/dist/**/*.js" ],
1814 "preLaunchTask" : " ${defaultBuildTask}"
1915 },
2016 {
3935 "description" : " 将反汇编风格设置为 Intel" ,
4036 "text" : " -gdb-set disassembly-flavor intel" ,
4137 "ignoreFailures" : true
42- },
38+ }
4339 ]
44- },
40+ }
4541 ]
46- }
42+ }
Original file line number Diff line number Diff line change 7777 "variant" : " cpp" ,
7878 "text_encoding" : " cpp"
7979 },
80- "clangd.fallbackFlags" : [
81- " -std=c++14" ,
82- " -I${workspaceFolder}/library"
83- ]
84- }
80+ "clangd.fallbackFlags" : [" -std=c++14" , " -I${workspaceFolder}/library" ]
81+ }
Original file line number Diff line number Diff line change 4141 "options" : {
4242 "cwd" : " ${fileDirname}"
4343 },
44- "problemMatcher" : [
45- " $gcc"
46- ],
44+ "problemMatcher" : [" $gcc" ],
4745 "group" : {
4846 "kind" : " build"
4947 },
5048 "detail" : " 调试器生成的任务。"
5149 }
5250 ]
53- }
51+ }
Original file line number Diff line number Diff line change @@ -14,3 +14,4 @@ library/
1414! library /LICENSE
1515.github /
1616** /* .gch
17+ tmp /
Original file line number Diff line number Diff line change @@ -167,7 +167,7 @@ function writeIncludeToFile(
167167 const lines = content . split ( '\n' ) ;
168168 let start = lines . findIndex ( x => x === extensionStartNoteStr ) ,
169169 end = lines . findIndex ( x => x === extensionEndNoteStr ) ;
170- if ( start === - 1 || end === - 1 ) ( start = 0 ) , ( end = - 1 ) ;
170+ if ( start === - 1 || end === - 1 ) ( ( start = 0 ) , ( end = - 1 ) ) ;
171171 ++ end ;
172172 return {
173173 start,
Original file line number Diff line number Diff line change 33 "module" : " NodeNext" ,
44 "moduleResolution" : " NodeNext" ,
55 "target" : " ES2022" ,
6- "lib" : [
7- " ES2022"
8- ],
6+ "lib" : [" ES2022" ],
97 "sourceMap" : true ,
108 "rootDir" : " src" ,
119 "strict" : true ,
1412 "noImplicitAny" : true ,
1513 "resolveJsonModule" : true
1614 }
17- }
15+ }
You can’t perform that action at this time.
0 commit comments