Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug @OcamlDebugger #20

Open
scg03 opened this issue Feb 7, 2015 · 0 comments
Open

bug @OcamlDebugger #20

scg03 opened this issue Feb 7, 2015 · 0 comments

Comments

@scg03
Copy link

scg03 commented Feb 7, 2015

Thank you for developing this IDE.

The "put breakpoint" does not work on my system and it turns out the problem is at Ocaml/src/ocaml/debugging/OcamlDebugger.java line 1024

Pattern patternBreakpoint = Pattern
        .compile("Breakpoint\\s+(\\d+)\\s+at\\s+(\\d+):\\s+file\\s+(.*?),\\s+line\\s+(\\d+),\\s+characters\\s+(\\d+)-(\\d+)");

It should be

Pattern patternBreakpoint = Pattern
        .compile("Breakpoint\\s+(\\d+)\\s+at\\s+(\\d+)\\s+:\\s+file\\s+(.*?),\\s+line\\s+(\\d+),\\s+characters\\s+(\\d+)-(\\d+)");

There are spaces before and after the ":" on my system.

Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant