-
Notifications
You must be signed in to change notification settings - Fork 43
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
Not proper syntax #274
Comments
It could be that it fails to look up the source code. If you have an example when this happens we can try to fix it. Also, make sure you are on the latest versions of everything, specifically 1.0.3 of CodeTracking.jl because some bugs with this have been fixed. |
Thanks for your response. I do have the latest versions of the packages (just checked). Here is the function I was working on now, but this has happened on other similar situations:
When I enter debug mode where
I tried to use debugger on simpler functions, such as calculating the square of an integer, and it works fine. |
I put your function in
|
That is extremely odd. I started a fresh session with no other packages loaded and what you entered exactly. Still get the same result. Any suggestions? Thanks for your time anyway |
What Julia version are you on? |
In case this is useful:
|
So it seems that |
If it can't find the source files it prints lowered code instead. So for some reason, it can't find it on your machine. |
Where should it be located? I am on OSX |
It's hard to debug this remotely, so we might need you to poke at this a bit locally. The code to find your source file comes from CodeTracking, so you could test it directly and report back. Debugger's use of CodeTracking is encapsulated in Debugger.jl/src/locationinfo.jl Lines 1 to 25 in 7a2b963
specifically on line 12. You should also try with and without Revise loaded (before you load the source file you're trying to debug), and let us know which things fail under which conditions. (Most things work better in debugging if you're using Revise.) |
Need more info here to do anything. |
Well, I tried last comment, but could not figure out how to make it work. Not certain what other information you would require. |
This is such an awesome tool. However, everytime that I try to use in a complex function (several lines of code, calling other functions or other elements) the synthax goes weird looking like low level code. Not entirely certain what could be the issue
The text was updated successfully, but these errors were encountered: