Skip to content

Commit

Permalink
Fix deep code positions parsing
Browse files Browse the repository at this point in the history
Prefix was returned reversed.
  • Loading branch information
strub committed Oct 30, 2024
1 parent 2b77a2a commit ed8f813
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ecParser.mly
Original file line number Diff line number Diff line change
Expand Up @@ -2637,7 +2637,7 @@ codepos1:

codepos:
| nm=rlist0(nm1_codepos, empty) i=codepos1
{ (List.rev nm, i) }
{ (nm, i) }

codeoffset1:
| i=sword { (`ByOffset i :> pcodeoffset1) }
Expand Down

0 comments on commit ed8f813

Please sign in to comment.