class Byebug::Processor
Should this be a mixin?
def afmt(msg, newline="\n")
def afmt(msg, newline="\n") "\032\032#{msg}#{newline}" end
def aprint(msg)
def aprint(msg) print afmt(msg) if Byebug.annotate.to_i > 2 end
Should this be a mixin?
def afmt(msg, newline="\n") "\032\032#{msg}#{newline}" end
def aprint(msg) print afmt(msg) if Byebug.annotate.to_i > 2 end