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/jay
diff options
context:
space:
mode:
authorJackson Harper <jackson@novell.com>2003-01-14 09:35:26 +0300
committerJackson Harper <jackson@novell.com>2003-01-14 09:35:26 +0300
commit3349f59a562e5e56d21d2aaecd383ee66fd0cb0d (patch)
treee28769e80d9e19c419652a0d1024136c00cf1f37 /mcs/jay
parentbc2f767e74541173c4f077564553fe70f9e06969 (diff)
Remove cleanup stuff, it has been moved to a better spot.
svn path=/trunk/mcs/; revision=10498
Diffstat (limited to 'mcs/jay')
-rwxr-xr-xmcs/jay/ChangeLog4
-rw-r--r--mcs/jay/skeleton.cs8
2 files changed, 5 insertions, 7 deletions
diff --git a/mcs/jay/ChangeLog b/mcs/jay/ChangeLog
index 361df7e882e..9ea2201c702 100755
--- a/mcs/jay/ChangeLog
+++ b/mcs/jay/ChangeLog
@@ -1,3 +1,7 @@
+2003-01-13 Jackson Harper <jackson@latitudegeo.com>
+
+ * skeleton.cs: Remove cleanup stuff, it has been moved to a better spot.
+
2003-01-13 Duncan Mak <duncan@ximian.com>
* skeleton.cs (cleanpup): Rename to cleanup to make it look more consistent.
diff --git a/mcs/jay/skeleton.cs b/mcs/jay/skeleton.cs
index a1d124744c9..87a846529d8 100644
--- a/mcs/jay/skeleton.cs
+++ b/mcs/jay/skeleton.cs
@@ -150,8 +150,7 @@ t if (debug != null) debug.push(yyState, yyVal);
. if ((yyN = yyDefRed[yyState]) == 0) { // else [default] reduce (yyN)
. if (yyToken < 0) {
. yyToken = yyLex.advance() ? yyLex.token() : 0;
-. if (yyToken == 0)
-. yyLex.cleanup ();
+
t if (debug != null)
t debug.lex(yyState, yyToken, yyname(yyToken), yyLex.value());
. }
@@ -221,8 +220,6 @@ t if (debug != null) debug.shift(0, yyFinal);
. yyState = yyFinal;
. if (yyToken < 0) {
. yyToken = yyLex.advance() ? yyLex.token() : 0;
-. if (yyToken == 0)
-. yyLex.cleanup ();
t if (debug != null)
t debug.lex(yyState, yyToken,yyname(yyToken), yyLex.value());
@@ -352,9 +349,6 @@ t if (debug != null) debug.shift(yyStates[yyTop], yyState);
. @return value for token().
. */
. Object value ();
-. /** Cleanup, this is called when advance returns false.
-. */
-. void cleanup ();
. }
. }
.} // close outermost namespace, that MUST HAVE BEEN opened in the prolog