Prepping for mdoc et. al. move from monodoc/tools to mcs/tools/mdoc...
[mono.git] / mcs / tools / mdoc / DocTest-v2.patch
1 --- DocTest-v1.cs       2007-10-28 20:10:26.000000000 -0400
2 +++ DocTest.cs  2007-12-10 13:29:32.000000000 -0500
3 @@ -1,6 +1,9 @@
4  using System;
5  using System.Collections;
6  using System.Collections.Generic;
7 +using System.Reflection;
8 +
9 +[assembly: AssemblyVersion ("2.0.0.0")]
10  
11  namespace System {
12         /* 
13 @@ -37,15 +40,7 @@
14                 {
15                         return null;
16                 }
17 -
18 -               // ECMA docs *incorrectly* document parameter -- skip
19 -               public static void Resize<T> (ref T[] array, int newSize)
20 -               {
21 -               }
22         }
23 -
24 -       // to test ECMA doc importing...
25 -       public delegate void AsyncCallback (IAsyncResult ar);
26  }
27  
28  namespace Mono.DocTest {
29 @@ -279,6 +274,9 @@
30                 /// <remarks><c>M:Mono.DocTest.UseLists.UseHelper``3(Mono.DocTest.Generic.MyList{``0}.Helper{``1,``2})</c>.</remarks>
31                 public void UseHelper<T,U,V> (Generic.MyList<T>.Helper<U,V> helper) {}
32         }
33 +
34 +       public class AddedType {
35 +       }
36  }
37  
38  namespace Mono.DocTest.Generic {
39 @@ -294,6 +292,8 @@
40                         return default(U);
41                 }
42  
43 +               public void AddedInVersion0_1_0_0 () {}
44 +
45                 /// <param name="list">Insert description here</param>
46                 /// <remarks><c>M:Mono.DocTest.GenericBase`1.op_Explicit(Mono.DocTest.GenericBase{`0})~`0</c></remarks>
47                 /// <returns>The default value for <typeparamref name="U"/>.</returns>