2008-06-11 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / mcs / generic-mcs.cs
index c32a3842182390ede30acdfbe8709250b2ae527e..0934b996d9b32e2a96b6f89f9d15b301023d8e22 100644 (file)
@@ -4,7 +4,7 @@
 // Author:
 //   Raja R Harinath <rharinath@novell.com>
 //
-// (C) 2006 Novell, Inc.
+// Copyright 2006 Novell, Inc.
 //
 using System;
 using System.Reflection;
@@ -175,14 +175,6 @@ namespace Mono.CSharp
 
        public class TypeParameterExpr : TypeExpr
        {
-               public override string Name {
-                       get { throw new NotImplementedException (); }
-               }
-
-               public override string FullName {
-                       get { throw new NotImplementedException (); }
-               }
-
                public TypeParameterExpr (TypeParameter type_parameter, Location loc)
                {
                        throw new NotImplementedException ();
@@ -228,14 +220,6 @@ namespace Mono.CSharp
                        throw new NotImplementedException ();
                }
 
-               public override string Name {
-                       get { throw new NotImplementedException (); }
-               }
-
-               public override string FullName {
-                       get { throw new NotImplementedException (); }
-               }
-
                protected override TypeExpr DoResolveAsTypeStep (IResolveContext ec)
                {
                        throw new NotImplementedException ();
@@ -391,45 +375,4 @@ namespace Mono.CSharp
                        throw new NotImplementedException ();           
                }
        }
-       
-       public class Nullable
-       {
-               public class NullCoalescingOperator : Expression
-               {
-                       public NullCoalescingOperator (Expression left, Expression right, Location loc)
-                       {
-                       }
-                       
-                       public override Expression DoResolve (EmitContext ec)
-                       {
-                               throw new NotImplementedException ();
-                       }
-                       
-                       public override void Emit (EmitContext ec)
-                       {
-                               throw new NotImplementedException ();
-                       }
-               }
-               
-               public class Unwrap : Expression
-               {
-                       public override Expression DoResolve (EmitContext ec)
-                       {
-                               throw new NotImplementedException ();
-                       }
-                       
-                       public override void Emit (EmitContext ec)
-                       {
-                               throw new NotImplementedException ();
-                       }
-               }
-               
-               public class HasValue
-               {
-                       public static Expression Create (Expression expr, EmitContext ec)
-                       {
-                               throw new NotImplementedException ();
-                       }
-               }
-       }
 }