Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Baulig <martin@novell.com>2004-01-15 07:23:48 +0300
committerMartin Baulig <martin@novell.com>2004-01-15 07:23:48 +0300
commite375070d10bcf03306eba80c3b0d4a08171b8f0b (patch)
tree7e07e825fb47dcf8034a4451012e5a8c812a9df3 /mcs/class/Mono.CSharp.Debugger/MonoSymbolTable.cs
parentb67a5dd744f448afd9b806aec80902f877fa140e (diff)
2004-01-15 Martin Baulig <martin@ximian.com>
* MonoSymbolFile.cs (MonoDebuggerSupport): New public class containing static wrappers for calling the `MonoDebugger_*' function in S.R.Assembly. svn path=/trunk/mcs/; revision=22093
Diffstat (limited to 'mcs/class/Mono.CSharp.Debugger/MonoSymbolTable.cs')
-rw-r--r--mcs/class/Mono.CSharp.Debugger/MonoSymbolTable.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mcs/class/Mono.CSharp.Debugger/MonoSymbolTable.cs b/mcs/class/Mono.CSharp.Debugger/MonoSymbolTable.cs
index 94e1080aa4d..43e06e03379 100644
--- a/mcs/class/Mono.CSharp.Debugger/MonoSymbolTable.cs
+++ b/mcs/class/Mono.CSharp.Debugger/MonoSymbolTable.cs
@@ -536,7 +536,7 @@ namespace Mono.CSharp.Debugger
}
public MethodBase MethodBase {
- get { return SymbolFile.Assembly.MonoDebugger_GetMethod (Token); }
+ get { return MonoDebuggerSupport.GetMethod (SymbolFile.Assembly, Token); }
}
internal MethodEntry (MonoSymbolFile file, BinaryReader reader, int index)
@@ -589,8 +589,8 @@ namespace Mono.CSharp.Debugger
for (int i = 0; i < NumLocals; i++) {
Locals [i] = new LocalVariableEntry (reader);
- LocalTypes [i] = ass.MonoDebugger_GetLocalTypeFromSignature (
- Locals [i].Signature);
+ LocalTypes [i] = MonoDebuggerSupport.GetLocalTypeFromSignature (
+ ass, Locals [i].Signature);
}
reader.BaseStream.Position = old_pos;