Added Debugger::GetAsync{Output/Error}Stream, and use it to print parse errors when we go to run a breakpoint condition.

llvm-svn: 132517
diff --git a/lldb/source/Commands/CommandObjectBreakpointCommand.cpp b/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
index f047555..b452dbc 100644
--- a/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
+++ b/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
@@ -803,10 +803,8 @@
             // Rig up the results secondary output stream to the debugger's, so the output will come out synchronously
             // if the debugger is set up that way.
                 
-            StreamSP output_stream (new StreamAsynchronousIO (debugger.GetCommandInterpreter(),
-                                                              CommandInterpreter::eBroadcastBitAsynchronousOutputData));
-            StreamSP error_stream (new StreamAsynchronousIO (debugger.GetCommandInterpreter(),
-                                                             CommandInterpreter::eBroadcastBitAsynchronousErrorData));
+            StreamSP output_stream (debugger.GetAsyncOutputStream());
+            StreamSP error_stream (debugger.GetAsyncErrorStream());
             result.SetImmediateOutputStream (output_stream);
             result.SetImmediateErrorStream (error_stream);