toivoh / Debug.jl

Prototype interactive debugger for Julia
Other
86 stars 13 forks source link

Semicolon does not suppress output in debugger #66

Closed mikewojnowicz closed 9 years ago

mikewojnowicz commented 9 years ago

Hi, I am working on an algorithm that is run over 7 million variables. When I use the Julia debugger, the semicolon fails to suppress output.

toivoh commented 9 years ago

Should be fixed now, I did a simple regex match to see if the input ends with a semicolon (possibly followed by whitespace). It's possible to trick it with comments and such, but I hope this should be enough for now. Will update METADATA soon.