File: cecil_0.5_backport.dpatch

package info (click to toggle)
monodevelop 1.0%2Bdfsg-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 32,528 kB
  • ctags: 40,669
  • sloc: cs: 255,472; xml: 10,041; makefile: 3,731; sh: 2,528; sed: 2
file content (30 lines) | stat: -rw-r--r-- 1,131 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#! /bin/sh /usr/share/dpatch/dpatch-run
## cecil_0.5_backport.dpatch by Mirco Bauer <meebey@debian.org>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: No description.

@DPATCH@
diff -urNad monodevelop-0.14~/Core/src/MonoDevelop.Projects/MonoDevelop.Projects.Parser.Cecil/MdbWriter.cs monodevelop-0.14/Core/src/MonoDevelop.Projects/MonoDevelop.Projects.Parser.Cecil/MdbWriter.cs
--- monodevelop-0.14~/Core/src/MonoDevelop.Projects/MonoDevelop.Projects.Parser.Cecil/MdbWriter.cs	2007-07-07 15:17:22.000000000 +0200
+++ monodevelop-0.14/Core/src/MonoDevelop.Projects/MonoDevelop.Projects.Parser.Cecil/MdbWriter.cs	2007-07-07 15:17:40.000000000 +0200
@@ -28,6 +28,7 @@
 
 namespace Mono.Cecil.Mdb {
 
+	using System;
 	using System.Collections;
 	using SDS = System.Diagnostics.SymbolStore;
 	using Mono.CompilerServices.SymbolWriter;
@@ -44,6 +45,11 @@
 			m_documents = new Hashtable ();
 		}
 
+		public void Write (MethodBody body)
+		{
+			throw new NotImplementedException ();
+		}
+
 		public void Write (MethodBody body, byte [][] variables)
 		{
 			Document document = CreateDocuments (body);