File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 3
3
"description" : " The official VSCode plugin for ReScript." ,
4
4
"author" : " chenglou" ,
5
5
"license" : " MIT" ,
6
- "version" : " 0.0.6 " ,
6
+ "version" : " 0.0.7 " ,
7
7
"repository" : {
8
8
"type" : " git" ,
9
9
"url" : " https://github.com/rescript-lang/rescript-vscode"
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ FAILED: src/test.cmj src/test.cmi
177
177
let [ fileAndLocation , ...diagnosisMessage ] = diagnosisLines
178
178
let locationSeparatorV840 = fileAndLocation . lastIndexOf ( ':' )
179
179
let locationSeparatorV830 = fileAndLocation . lastIndexOf ( ' ' )
180
- let locationSeparator = locationSeparatorV830 >= 0 ? locationSeparatorV840 : locationSeparatorV830
180
+ let locationSeparator = locationSeparatorV840 >= 0 ? locationSeparatorV840 : locationSeparatorV830
181
181
let file = fileAndLocation . substring ( 2 , locationSeparator )
182
182
let location = fileAndLocation . substring ( locationSeparator )
183
183
if ( ret [ file ] == null ) {
You can’t perform that action at this time.
0 commit comments