Skip to content

Commit ed8f813

Browse files
committed
Fix deep code positions parsing
Prefix was returned reversed.
1 parent 2b77a2a commit ed8f813

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ecParser.mly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2637,7 +2637,7 @@ codepos1:
26372637

26382638
codepos:
26392639
| nm=rlist0(nm1_codepos, empty) i=codepos1
2640-
{ (List.rev nm, i) }
2640+
{ (nm, i) }
26412641

26422642
codeoffset1:
26432643
| i=sword { (`ByOffset i :> pcodeoffset1) }

0 commit comments

Comments
 (0)