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
path: root/mcs/ilasm
diff options
context:
space:
mode:
authorMartin Baulig <martin@novell.com>2008-06-11 18:10:30 +0400
committerMartin Baulig <martin@novell.com>2008-06-11 18:10:30 +0400
commitb7f25b2b1d82a65fecf9a65634e4c81c7a0300ab (patch)
tree83649c88122796c77a5ce4b5c4359ba525a774d0 /mcs/ilasm
parent8904a3a7bd9e02c30b211d8dd49fad4786299ea1 (diff)
Reflect latest symbol writer changes.
svn path=/trunk/mcs/; revision=105584
Diffstat (limited to 'mcs/ilasm')
-rw-r--r--mcs/ilasm/codegen/DebuggingInfo.cs6
1 files changed, 1 insertions, 5 deletions
diff --git a/mcs/ilasm/codegen/DebuggingInfo.cs b/mcs/ilasm/codegen/DebuggingInfo.cs
index 55a9f865fee..57ff6c64355 100644
--- a/mcs/ilasm/codegen/DebuggingInfo.cs
+++ b/mcs/ilasm/codegen/DebuggingInfo.cs
@@ -60,7 +60,7 @@ namespace Mono.ILASM {
}
}
- public class SourceMethod : ISourceMethod
+ public class SourceMethod : IMethodDef
{
CompileUnitEntry file;
MethodDef method;
@@ -81,10 +81,6 @@ namespace Mono.ILASM {
get { return method.Name; }
}
- public int NamespaceID {
- get { return 0; }
- }
-
public int Token {
get {
PEAPI.MethodDef pemethod = method.PeapiMethodDef;