Author: toshok
Date: 2005-04-12 15:06:07 -0400 (Tue, 12 Apr 2005)
New Revision: 42863
Modified:
trunk/debugger/ChangeLog
trunk/debugger/frontend/Interpreter.cs
Log:
2005-04-12 Chris Toshok <[EMAIL PROTECTED]>
* frontend/Interpreter.cs (Interpreter.ShowModules): clean up the
module list.
Modified: trunk/debugger/ChangeLog
===================================================================
--- trunk/debugger/ChangeLog 2005-04-12 18:32:13 UTC (rev 42862)
+++ trunk/debugger/ChangeLog 2005-04-12 19:06:07 UTC (rev 42863)
@@ -1,3 +1,8 @@
+2005-04-12 Chris Toshok <[EMAIL PROTECTED]>
+
+ * frontend/Interpreter.cs (Interpreter.ShowModules): clean up the
+ module list.
+
2005-04-11 Chris Toshok <[EMAIL PROTECTED]>
* backends/Debugger.cs (DebuggerBackend.LoadLibrary): if the
Modified: trunk/debugger/frontend/Interpreter.cs
===================================================================
--- trunk/debugger/frontend/Interpreter.cs 2005-04-12 18:32:13 UTC (rev
42862)
+++ trunk/debugger/frontend/Interpreter.cs 2005-04-12 19:06:07 UTC (rev
42863)
@@ -576,14 +576,15 @@
return;
}
+ Print ("{0,4} {1,5} {2,5} {3}", "Id", "step?", "sym?",
"Name");
for (int i = 0; i < modules.Length; i++) {
Module module = modules [i];
- Print ("{0,4} {1}{2}{3}{4}{5}", i, module.Name,
- module.IsLoaded ? " loaded" : "",
- module.SymbolsLoaded ? " symbols" : "",
- module.StepInto ? " step" : "",
- module.LoadSymbols ? "" : " ignore");
+ Print ("{0,4} {1,5} {2,5} {3}",
+ i,
+ module.StepInto ? "y " : "n ",
+ module.SymbolsLoaded ? "y " : "n ",
+ module.Name);
}
}
_______________________________________________
Mono-patches maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches