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:
authorMiguel de Icaza <miguel@gnome.org>2008-09-15 02:33:16 +0400
committerMiguel de Icaza <miguel@gnome.org>2008-09-15 02:33:16 +0400
commitd279b9f3ab9fbc005271efd50193c78c325e7b2d (patch)
tree3ce80f9360fe18c6cb2d24b024501df6bd3005b4 /mcs/jay
parent632ef4838460fdb87d16645d32aa3473de32c69c (diff)
Small documentation
svn path=/trunk/mcs/; revision=112978
Diffstat (limited to 'mcs/jay')
-rw-r--r--mcs/jay/skeleton.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/jay/skeleton.cs b/mcs/jay/skeleton.cs
index f11cf4e2a3c..ebed7b7c15c 100644
--- a/mcs/jay/skeleton.cs
+++ b/mcs/jay/skeleton.cs
@@ -183,7 +183,7 @@ t debug.shift(yyState, yyTable[yyN], yyErrorFlag-1);
. yyExpectingState = yyState;
. // yyerror(String.Format ("syntax error, got token `{0}'", yyname (yyToken)), yyExpecting(yyState));
t if (debug != null) debug.error("syntax error");
-. if (yyToken == 0 || yyToken == eof_token /* eof */) throw new yyParser.yyUnexpectedEof ();
+. if (yyToken == 0 /*eof*/ || yyToken == eof_token) throw new yyParser.yyUnexpectedEof ();
. goto case 1;
. case 1: case 2:
. yyErrorFlag = 3;