[Monodevelop-patches-list] r2356 - in trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn: . Gui
Chris Toshok
toshok at mono-cvs.ximian.com
Tue Mar 15 14:52:46 EST 2005
Author: toshok
Date: 2005-03-15 14:52:46 -0500 (Tue, 15 Mar 2005)
New Revision: 2356
Modified:
trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog
trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerVariablePad.cs
Log:
2005-03-15 Chris Toshok <toshok at ximian.com>
* Gui/DebuggerVariablePad.cs: never commit code before trying to
compile it.
Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog 2005-03-15 19:48:31 UTC (rev 2355)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog 2005-03-15 19:52:46 UTC (rev 2356)
@@ -1,5 +1,10 @@
2005-03-15 Chris Toshok <toshok at ximian.com>
+ * Gui/DebuggerVariablePad.cs: never commit code before trying to
+ compile it.
+
+2005-03-15 Chris Toshok <toshok at ximian.com>
+
* Makefile.am (DLLS): add ICSharpCode.SharpRefactory.dll
(FILES): remove CSharpTokenizer.cs, CSharpExpressionParser.cs, and
MyTextReader.cs. Add DebuggerASTVisitor.cs
Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerVariablePad.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerVariablePad.cs 2005-03-15 19:48:31 UTC (rev 2355)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerVariablePad.cs 2005-03-15 19:52:46 UTC (rev 2356)
@@ -441,7 +441,7 @@
/* use our visitor to convert from MD's AST to types that
* facilitate evaluation by the debugger */
visitor = new DebuggerASTVisitor ();
- dbgr_expr = (Expression)e.AcceptVisitor (visitor, null);
+ dbgr_expr = (Expression)ast_expr.AcceptVisitor (visitor, null);
/* finally, resolve and evaluate the expression */
dbgr_expr = dbgr_expr.Resolve (ctx);
More information about the Monodevelop-patches-list
mailing list