2004-09-14 Martin Baulig <martin@ximian.com>
authorMartin Baulig <martin@novell.com>
Tue, 14 Sep 2004 08:45:57 +0000 (08:45 -0000)
committerMartin Baulig <martin@novell.com>
Tue, 14 Sep 2004 08:45:57 +0000 (08:45 -0000)
* genericparser.cs: Removed.

svn path=/trunk/mcs/; revision=33863

mcs/gmcs/ChangeLog
mcs/gmcs/genericparser.cs [deleted file]

index c3f086c8f30a8d8ae310ef41532fae500d872b3f..a8aa71ccd8d66c4f3ec654dc0e340bbba1c08aff 100755 (executable)
@@ -1,3 +1,7 @@
+2004-09-14  Martin Baulig  <martin@ximian.com>
+
+       * genericparser.cs: Removed.
+
 2004-09-13  Marek Safar  <marek.safar@seznam.cz>
 
        * class.cs (MethodCore.CheckBase): Fix bug #65757.
diff --git a/mcs/gmcs/genericparser.cs b/mcs/gmcs/genericparser.cs
deleted file mode 100644 (file)
index 90fe7b4..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-//
-// GenericParser.cs: The Base Parser for the Mono compilers
-//
-// Author: A Rafael D Teixeira (rafaelteixeirabr@hotmail.com)
-//
-// Licensed under the terms of the GNU GPL
-//
-// Copyright (C) 2001 Ximian, Inc.
-//
-using System;
-using System.Text;
-
-namespace Mono.Languages
-{
-       using System.Collections;
-
-       /// <summary>
-       /// Base class to support multiple Jay generated parsers
-       /// </summary>
-       public abstract class GenericParser
-       {
-               // Name of the file we are parsing
-               public string name;
-
-               // Input stream to parse from.
-               public System.IO.Stream input;
-
-               public virtual string[] extensions()
-               {
-                       string [] list = { ".cs" };
-                       return list;
-               }
-
-               public GenericParser()
-               {
-                       //
-                       // DO NOTHING: Derived classes should do their iniatilization here duties
-                       //
-               }
-
-               protected bool yacc_verbose_flag = false;
-
-               public bool yacc_verbose
-               {
-                       set
-                       {
-                               yacc_verbose_flag = value;
-                       }
-
-                       get
-                       {
-                               return yacc_verbose_flag;
-                       }
-               }
-       }
-}
-
-
-