| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109 |
- // created by jay 0.7 (c) 1998 [email protected]
- // line 2 "Parser.jay"
- // XPath parser
- //
- // Author - Piers Haken <[email protected]>
- //
- using System;
- using System.Xml;
- using System.Xml.XPath;
- namespace Mono.Xml.XPath
- {
- public class XPathParser
- {
- internal object yyparseSafe (Tokenizer tok)
- {
- return yyparseSafe (tok, null);
- }
- internal object yyparseSafe (Tokenizer tok, object yyDebug)
- {
- //yyDebug = new yydebug.yyDebugSimple ();
- try
- {
- Expression expr = (Expression) yyparse (tok, yyDebug);
- //Console.WriteLine (expr.ToString ());
- return expr;
- }
- catch (XPathException e)
- {
- throw e;
- }
- catch (Exception e)
- {
- throw new XPathException ("Error during parse", e);
- }
- }
- internal object yyparseDebug (Tokenizer tok)
- {
- return yyparseSafe (tok, new yydebug.yyDebugSimple ());
- }
- // line 47
- /** simplified error message.
- @see <a href="#yyerror(java.lang.String, java.lang.String[])">yyerror</a>
- */
- public void yyerror (string message) {
- yyerror(message, null);
- }
- /** (syntax) error message.
- Can be overwritten to control message format.
- @param message text to be displayed.
- @param expected vector of acceptable tokens, if available.
- */
- public void yyerror (string message, string[] expected) {
- if ((expected != null) && (expected.Length > 0)) {
- System.Console.Write (message+", expecting");
- for (int n = 0; n < expected.Length; ++ n)
- System.Console.Write (" "+expected[n]);
- System.Console.WriteLine ();
- } else
- System.Console.WriteLine (message);
- }
- /** debugging support, requires the package jay.yydebug.
- Set to null to suppress debugging messages.
- */
- protected yydebug.yyDebug debug;
- protected static int yyFinal = 25;
- public static string [] yyRule = {
- "$accept : Expr",
- "Expr : OrExpr",
- "OrExpr : AndExpr",
- "OrExpr : OrExpr OR AndExpr",
- "AndExpr : EqualityExpr",
- "AndExpr : AndExpr AND EqualityExpr",
- "EqualityExpr : RelationalExpr",
- "EqualityExpr : EqualityExpr EQ RelationalExpr",
- "EqualityExpr : EqualityExpr NE RelationalExpr",
- "RelationalExpr : AdditiveExpr",
- "RelationalExpr : RelationalExpr LT AdditiveExpr",
- "RelationalExpr : RelationalExpr GT AdditiveExpr",
- "RelationalExpr : RelationalExpr LE AdditiveExpr",
- "RelationalExpr : RelationalExpr GE AdditiveExpr",
- "AdditiveExpr : MultiplicativeExpr",
- "AdditiveExpr : AdditiveExpr PLUS MultiplicativeExpr",
- "AdditiveExpr : AdditiveExpr MINUS MultiplicativeExpr",
- "MultiplicativeExpr : UnaryExpr",
- "MultiplicativeExpr : MultiplicativeExpr MULTIPLY UnaryExpr",
- "MultiplicativeExpr : MultiplicativeExpr DIV UnaryExpr",
- "MultiplicativeExpr : MultiplicativeExpr MOD UnaryExpr",
- "UnaryExpr : UnionExpr",
- "UnaryExpr : MINUS UnaryExpr",
- "UnionExpr : PathExpr",
- "UnionExpr : UnionExpr BAR PathExpr",
- "PathExpr : LocationPath",
- "PathExpr : FilterExpr",
- "PathExpr : FilterExpr SLASH RelativeLocationPath",
- "PathExpr : FilterExpr SLASH2 RelativeLocationPath",
- "LocationPath : RelativeLocationPath",
- "LocationPath : AbsoluteLocationPath",
- "AbsoluteLocationPath : SLASH",
- "AbsoluteLocationPath : SLASH RelativeLocationPath",
- "AbsoluteLocationPath : SLASH2 RelativeLocationPath",
- "RelativeLocationPath : Step",
- "RelativeLocationPath : RelativeLocationPath SLASH Step",
- "RelativeLocationPath : RelativeLocationPath SLASH2 Step",
- "Step : PredicatedStep",
- "Step : DOT",
- "Step : DOT2",
- "PredicatedStep : AxisTest",
- "PredicatedStep : PredicatedStep Predicate",
- "AxisTest : AxisSpecifier QName",
- "AxisTest : AxisSpecifier ASTERISK",
- "AxisTest : AxisSpecifier NodeType PAREN_OPEN OptionalLiteral PAREN_CLOSE",
- "AxisSpecifier :",
- "AxisSpecifier : AT",
- "AxisSpecifier : AxisName COLON2",
- "NodeType : COMMENT",
- "NodeType : TEXT",
- "NodeType : PROCESSING_INSTRUCTION",
- "NodeType : NODE",
- "FilterExpr : PrimaryExpr",
- "FilterExpr : FilterExpr Predicate",
- "PrimaryExpr : DOLLAR QName",
- "PrimaryExpr : PAREN_OPEN Expr PAREN_CLOSE",
- "PrimaryExpr : LITERAL",
- "PrimaryExpr : NUMBER",
- "PrimaryExpr : FunctionCall",
- "FunctionCall : FUNCTION_NAME PAREN_OPEN OptionalArgumentList PAREN_CLOSE",
- "OptionalArgumentList :",
- "OptionalArgumentList : Expr OptionalArgumentListTail",
- "OptionalArgumentListTail :",
- "OptionalArgumentListTail : COMMA Expr OptionalArgumentListTail",
- "Predicate : BRACKET_OPEN Expr BRACKET_CLOSE",
- "AxisName : ANCESTOR",
- "AxisName : ANCESTOR_OR_SELF",
- "AxisName : ATTRIBUTE",
- "AxisName : CHILD",
- "AxisName : DESCENDANT",
- "AxisName : DESCENDANT_OR_SELF",
- "AxisName : FOLLOWING",
- "AxisName : FOLLOWING_SIBLING",
- "AxisName : NAMESPACE",
- "AxisName : PARENT",
- "AxisName : PRECEDING",
- "AxisName : PRECEDING_SIBLING",
- "AxisName : SELF",
- "OptionalLiteral :",
- "OptionalLiteral : LITERAL",
- };
- protected static string [] yyName = {
- "end-of-file",null,null,null,null,null,null,null,null,null,null,null,
- null,null,null,null,null,null,null,null,null,null,null,null,null,null,
- null,null,null,null,null,null,null,null,null,null,"'$'",null,null,
- null,"'('","')'","'*'","'+'","','","'-'","'.'","'/'",null,null,null,
- null,null,null,null,null,null,null,null,null,"'<'","'='","'>'",null,
- "'@'",null,null,null,null,null,null,null,null,null,null,null,null,
- null,null,null,null,null,null,null,null,null,null,null,null,null,null,
- "'['",null,"']'",null,null,null,null,null,null,null,null,null,null,
- null,null,null,null,null,null,null,null,null,null,null,null,null,null,
- null,null,null,null,null,null,"'|'",null,null,null,null,null,null,
- null,null,null,null,null,null,null,null,null,null,null,null,null,null,
- null,null,null,null,null,null,null,null,null,null,null,null,null,null,
- null,null,null,null,null,null,null,null,null,null,null,null,null,null,
- null,null,null,null,null,null,null,null,null,null,null,null,null,null,
- null,null,null,null,null,null,null,null,null,null,null,null,null,null,
- null,null,null,null,null,null,null,null,null,null,null,null,null,null,
- null,null,null,null,null,null,null,null,null,null,null,null,null,null,
- null,null,null,null,null,null,null,null,null,null,null,null,null,null,
- null,null,null,null,null,null,null,null,null,null,null,null,null,null,
- "ERROR","EOF","SLASH","SLASH2","\"//\"","DOT","DOT2","\"..\"",
- "COLON2","\"::\"","COMMA","AT","FUNCTION_NAME","BRACKET_OPEN",
- "BRACKET_CLOSE","PAREN_OPEN","PAREN_CLOSE","AND","\"and\"","OR",
- "\"or\"","DIV","\"div\"","MOD","\"mod\"","PLUS","MINUS","ASTERISK",
- "DOLLAR","BAR","EQ","NE","\"!=\"","LE","\"<=\"","GE","\">=\"","LT",
- "GT","ANCESTOR","\"ancestor\"","ANCESTOR_OR_SELF",
- "\"ancstor-or-self\"","ATTRIBUTE","\"attribute\"","CHILD","\"child\"",
- "DESCENDANT","\"descendant\"","DESCENDANT_OR_SELF",
- "\"descendant-or-self\"","FOLLOWING","\"following\"",
- "FOLLOWING_SIBLING","\"sibling\"","NAMESPACE","\"NameSpace\"",
- "PARENT","\"parent\"","PRECEDING","\"preceding\"","PRECEDING_SIBLING",
- "\"preceding-sibling\"","SELF","\"self\"","COMMENT","\"comment\"",
- "TEXT","\"text\"","PROCESSING_INSTRUCTION",
- "\"processing-instruction\"","NODE","\"node\"","MULTIPLY","NUMBER",
- "LITERAL","QName",
- };
- /** index-checked interface to yyName[].
- @param token single character or %token value.
- @return token name or [illegal] or [unknown].
- */
- public static string yyname (int token) {
- if ((token < 0) || (token > yyName.Length)) return "[illegal]";
- string name;
- if ((name = yyName[token]) != null) return name;
- return "[unknown]";
- }
- /** computes list of expected tokens on error by tracing the tables.
- @param state for which to compute the list.
- @return list of token names.
- */
- protected string[] yyExpecting (int state) {
- int token, n, len = 0;
- bool[] ok = new bool[yyName.Length];
- if ((n = yySindex[state]) != 0)
- for (token = n < 0 ? -n : 0;
- (token < yyName.Length) && (n+token < yyTable.Length); ++ token)
- if (yyCheck[n+token] == token && !ok[token] && yyName[token] != null) {
- ++ len;
- ok[token] = true;
- }
- if ((n = yyRindex[state]) != 0)
- for (token = n < 0 ? -n : 0;
- (token < yyName.Length) && (n+token < yyTable.Length); ++ token)
- if (yyCheck[n+token] == token && !ok[token] && yyName[token] != null) {
- ++ len;
- ok[token] = true;
- }
- string [] result = new string[len];
- for (n = token = 0; n < len; ++ token)
- if (ok[token]) result[n++] = yyName[token];
- return result;
- }
- /** the generated parser, with debugging messages.
- Maintains a state and a value stack, currently with fixed maximum size.
- @param yyLex scanner.
- @param yydebug debug message writer implementing yyDebug, or null.
- @return result of the last reduction, if any.
- @throws yyException on irrecoverable parse error.
- */
- public Object yyparse (yyParser.yyInput yyLex, Object yyd)
- {
- this.debug = (yydebug.yyDebug)yyd;
- return yyparse(yyLex);
- }
- /** initial size and increment of the state/value stack [default 256].
- This is not final so that it can be overwritten outside of invocations
- of yyparse().
- */
- protected int yyMax;
- /** executed at the beginning of a reduce action.
- Used as $$ = yyDefault($1), prior to the user-specified action, if any.
- Can be overwritten to provide deep copy, etc.
- @param first value for $1, or null.
- @return first.
- */
- protected Object yyDefault (Object first) {
- return first;
- }
- /** the generated parser.
- Maintains a state and a value stack, currently with fixed maximum size.
- @param yyLex scanner.
- @return result of the last reduction, if any.
- @throws yyException on irrecoverable parse error.
- */
- public Object yyparse (yyParser.yyInput yyLex)
- {
- if (yyMax <= 0) yyMax = 256; // initial size
- int yyState = 0; // state stack ptr
- int [] yyStates = new int[yyMax]; // state stack
- Object yyVal = null; // value stack ptr
- Object [] yyVals = new Object[yyMax]; // value stack
- int yyToken = -1; // current input
- int yyErrorFlag = 0; // #tks to shift
- int yyTop = 0;
- goto skip;
- yyLoop:
- yyTop++;
- skip:
- for (;; ++ yyTop) {
- if (yyTop >= yyStates.Length) { // dynamically increase
- int[] i = new int[yyStates.Length+yyMax];
- yyStates.CopyTo (i, 0);
- yyStates = i;
- Object[] o = new Object[yyVals.Length+yyMax];
- yyVals.CopyTo (o, 0);
- yyVals = o;
- }
- yyStates[yyTop] = yyState;
- yyVals[yyTop] = yyVal;
- if (debug != null) debug.push(yyState, yyVal);
- yyDiscarded: for (;;) { // discarding a token does not change stack
- int yyN;
- if ((yyN = yyDefRed[yyState]) == 0) { // else [default] reduce (yyN)
- if (yyToken < 0) {
- yyToken = yyLex.advance() ? yyLex.token() : 0;
- if (debug != null)
- debug.lex(yyState, yyToken, yyname(yyToken), yyLex.value());
- }
- if ((yyN = yySindex[yyState]) != 0 && ((yyN += yyToken) >= 0)
- && (yyN < yyTable.Length) && (yyCheck[yyN] == yyToken)) {
- if (debug != null)
- debug.shift(yyState, yyTable[yyN], yyErrorFlag-1);
- yyState = yyTable[yyN]; // shift to yyN
- yyVal = yyLex.value();
- yyToken = -1;
- if (yyErrorFlag > 0) -- yyErrorFlag;
- goto yyLoop;
- }
- if ((yyN = yyRindex[yyState]) != 0 && (yyN += yyToken) >= 0
- && yyN < yyTable.Length && yyCheck[yyN] == yyToken)
- yyN = yyTable[yyN]; // reduce (yyN)
- else
- switch (yyErrorFlag) {
-
- case 0:
- yyerror("syntax error", yyExpecting(yyState));
- if (debug != null) debug.error("syntax error");
- goto case 1;
- case 1: case 2:
- yyErrorFlag = 3;
- do {
- if ((yyN = yySindex[yyStates[yyTop]]) != 0
- && (yyN += Token.yyErrorCode) >= 0 && yyN < yyTable.Length
- && yyCheck[yyN] == Token.yyErrorCode) {
- if (debug != null)
- debug.shift(yyStates[yyTop], yyTable[yyN], 3);
- yyState = yyTable[yyN];
- yyVal = yyLex.value();
- goto yyLoop;
- }
- if (debug != null) debug.pop(yyStates[yyTop]);
- } while (-- yyTop >= 0);
- if (debug != null) debug.reject();
- throw new yyParser.yyException("irrecoverable syntax error");
-
- case 3:
- if (yyToken == 0) {
- if (debug != null) debug.reject();
- throw new yyParser.yyException("irrecoverable syntax error at end-of-file");
- }
- if (debug != null)
- debug.discard(yyState, yyToken, yyname(yyToken),
- yyLex.value());
- yyToken = -1;
- goto yyDiscarded; // leave stack alone
- }
- }
- int yyV = yyTop + 1-yyLen[yyN];
- if (debug != null)
- debug.reduce(yyState, yyStates[yyV-1], yyN, yyRule[yyN], yyLen[yyN]);
- yyVal = yyDefault(yyV > yyTop ? null : yyVals[yyV]);
- switch (yyN) {
- case 3:
- // line 133 "Parser.jay"
- {
- yyVal = new ExprOR ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]);
- }
- break;
- case 5:
- // line 141 "Parser.jay"
- {
- yyVal = new ExprAND ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]);
- }
- break;
- case 7:
- // line 149 "Parser.jay"
- {
- yyVal = new ExprEQ ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]);
- }
- break;
- case 8:
- // line 153 "Parser.jay"
- {
- yyVal = new ExprNE ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]);
- }
- break;
- case 10:
- // line 161 "Parser.jay"
- {
- yyVal = new ExprLT ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]);
- }
- break;
- case 11:
- // line 165 "Parser.jay"
- {
- yyVal = new ExprGT ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]);
- }
- break;
- case 12:
- // line 169 "Parser.jay"
- {
- yyVal = new ExprLE ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]);
- }
- break;
- case 13:
- // line 173 "Parser.jay"
- {
- yyVal = new ExprGE ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]);
- }
- break;
- case 15:
- // line 181 "Parser.jay"
- {
- yyVal = new ExprPLUS ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]);
- }
- break;
- case 16:
- // line 185 "Parser.jay"
- {
- yyVal = new ExprMINUS ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]);
- }
- break;
- case 18:
- // line 193 "Parser.jay"
- {
- yyVal = new ExprMULT ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]);
- }
- break;
- case 19:
- // line 197 "Parser.jay"
- {
- yyVal = new ExprDIV ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]);
- }
- break;
- case 20:
- // line 201 "Parser.jay"
- {
- yyVal = new ExprMOD ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]);
- }
- break;
- case 22:
- // line 209 "Parser.jay"
- {
- yyVal = new ExprNEG ((Expression) yyVals[0+yyTop]);
- }
- break;
- case 24:
- // line 217 "Parser.jay"
- {
- yyVal = new ExprUNION ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]);
- }
- break;
- case 27:
- // line 226 "Parser.jay"
- {
- yyVal = new ExprSLASH ((Expression) yyVals[-2+yyTop], (NodeSet) yyVals[0+yyTop]);
- }
- break;
- case 28:
- // line 230 "Parser.jay"
- {
- NodeTest test = new NodeTypeTest (Axes.DescendantOrSelf, XPathNodeType.All);
- yyVal = new ExprSLASH (new ExprSLASH ((Expression) yyVals[-2+yyTop], test), (NodeSet) yyVals[0+yyTop]);
- }
- break;
- case 31:
- // line 243 "Parser.jay"
- {
- yyVal = new ExprRoot ();
- }
- break;
- case 32:
- // line 247 "Parser.jay"
- {
- yyVal = new ExprSLASH (new ExprRoot (), (NodeSet) yyVals[0+yyTop]);
- }
- break;
- case 33:
- // line 251 "Parser.jay"
- {
- NodeTest test = new NodeTypeTest (Axes.DescendantOrSelf, XPathNodeType.All);
- yyVal = new ExprSLASH (new ExprSLASH (new ExprRoot (), test), (NodeSet) yyVals[0+yyTop]);
- }
- break;
- case 35:
- // line 260 "Parser.jay"
- {
- yyVal = new ExprSLASH ((NodeSet) yyVals[-2+yyTop], (NodeSet) yyVals[0+yyTop]);
- }
- break;
- case 36:
- // line 264 "Parser.jay"
- {
- NodeTest test = new NodeTypeTest (Axes.DescendantOrSelf, XPathNodeType.All);
- yyVal = new ExprSLASH (new ExprSLASH ((NodeSet) yyVals[-2+yyTop], test), (NodeSet) yyVals[0+yyTop]);
- }
- break;
- case 38:
- // line 273 "Parser.jay"
- {
- yyVal = new NodeTypeTest (Axes.Self, XPathNodeType.All);
- }
- break;
- case 39:
- // line 277 "Parser.jay"
- {
- yyVal = new NodeTypeTest (Axes.Parent, XPathNodeType.All);
- }
- break;
- case 41:
- // line 285 "Parser.jay"
- {
- yyVal = new ExprFilter ((NodeSet) yyVals[-1+yyTop], (Expression) yyVals[0+yyTop]);
- }
- break;
- case 42:
- // line 292 "Parser.jay"
- {
- yyVal = new NodeNameTest ((Axes) yyVals[-1+yyTop], (XmlQualifiedName) yyVals[0+yyTop]);
- }
- break;
- case 43:
- // line 296 "Parser.jay"
- {
- yyVal = new NodeTypeTest ((Axes) yyVals[-1+yyTop]);
- }
- break;
- case 44:
- // line 300 "Parser.jay"
- {
- yyVal = new NodeTypeTest ((Axes) yyVals[-4+yyTop], (XPathNodeType) yyVals[-3+yyTop], (String) yyVals[-1+yyTop]);
- }
- break;
- case 45:
- // line 307 "Parser.jay"
- {
- yyVal = Axes.Child;
- }
- break;
- case 46:
- // line 311 "Parser.jay"
- {
- yyVal = Axes.Attribute;
- }
- break;
- case 47:
- // line 315 "Parser.jay"
- {
- yyVal = yyVals[-1+yyTop];
- }
- break;
- case 48:
- // line 321 "Parser.jay"
- { yyVal = XPathNodeType.Comment; }
- break;
- case 49:
- // line 322 "Parser.jay"
- { yyVal = XPathNodeType.Text; }
- break;
- case 50:
- // line 323 "Parser.jay"
- { yyVal = XPathNodeType.ProcessingInstruction; }
- break;
- case 51:
- // line 324 "Parser.jay"
- { yyVal = XPathNodeType.All; }
- break;
- case 53:
- // line 331 "Parser.jay"
- {
- yyVal = new ExprFilter ((Expression) yyVals[-1+yyTop], (Expression) yyVals[0+yyTop]);
- }
- break;
- case 54:
- // line 338 "Parser.jay"
- {
- yyVal = new ExprVariable ((XmlQualifiedName) yyVals[0+yyTop]);
- }
- break;
- case 55:
- // line 342 "Parser.jay"
- {
- yyVal = yyVals[-1+yyTop];
- }
- break;
- case 56:
- // line 346 "Parser.jay"
- {
- yyVal = new ExprLiteral ((String) yyVals[0+yyTop]);
- }
- break;
- case 57:
- // line 350 "Parser.jay"
- {
- yyVal = new ExprNumber ((double) yyVals[0+yyTop]);
- }
- break;
- case 59:
- // line 358 "Parser.jay"
- {
- yyVal = new ExprFunctionCall ((XmlQualifiedName) yyVals[-3+yyTop], (FunctionArguments) yyVals[-1+yyTop]);
- }
- break;
- case 61:
- // line 366 "Parser.jay"
- {
- yyVal = new FunctionArguments ((Expression) yyVals[-1+yyTop], (FunctionArguments) yyVals[0+yyTop]);
- }
- break;
- case 63:
- // line 374 "Parser.jay"
- {
- yyVal = new FunctionArguments ((Expression) yyVals[-1+yyTop], (FunctionArguments) yyVals[0+yyTop]);
- }
- break;
- case 64:
- // line 381 "Parser.jay"
- {
- yyVal = yyVals[-1+yyTop];
- }
- break;
- case 65:
- // line 387 "Parser.jay"
- { yyVal = Axes.Ancestor; }
- break;
- case 66:
- // line 388 "Parser.jay"
- { yyVal = Axes.AncestorOrSelf; }
- break;
- case 67:
- // line 389 "Parser.jay"
- { yyVal = Axes.Attribute; }
- break;
- case 68:
- // line 390 "Parser.jay"
- { yyVal = Axes.Child; }
- break;
- case 69:
- // line 391 "Parser.jay"
- { yyVal = Axes.Descendant; }
- break;
- case 70:
- // line 392 "Parser.jay"
- { yyVal = Axes.DescendantOrSelf; }
- break;
- case 71:
- // line 393 "Parser.jay"
- { yyVal = Axes.Following; }
- break;
- case 72:
- // line 394 "Parser.jay"
- { yyVal = Axes.FollowingSibling; }
- break;
- case 73:
- // line 395 "Parser.jay"
- { yyVal = Axes.Namespace; }
- break;
- case 74:
- // line 396 "Parser.jay"
- { yyVal = Axes.Parent; }
- break;
- case 75:
- // line 397 "Parser.jay"
- { yyVal = Axes.Preceding; }
- break;
- case 76:
- // line 398 "Parser.jay"
- { yyVal = Axes.PrecedingSibling; }
- break;
- case 77:
- // line 399 "Parser.jay"
- { yyVal = Axes.Self; }
- break;
- // line 672
- }
- yyTop -= yyLen[yyN];
- yyState = yyStates[yyTop];
- int yyM = yyLhs[yyN];
- if (yyState == 0 && yyM == 0) {
- if (debug != null) debug.shift(0, yyFinal);
- yyState = yyFinal;
- if (yyToken < 0) {
- yyToken = yyLex.advance() ? yyLex.token() : 0;
- if (debug != null)
- debug.lex(yyState, yyToken,yyname(yyToken), yyLex.value());
- }
- if (yyToken == 0) {
- if (debug != null) debug.accept(yyVal);
- return yyVal;
- }
- goto yyLoop;
- }
- if (((yyN = yyGindex[yyM]) != 0) && ((yyN += yyState) >= 0)
- && (yyN < yyTable.Length) && (yyCheck[yyN] == yyState))
- yyState = yyTable[yyN];
- else
- yyState = yyDgoto[yyM];
- if (debug != null) debug.shift(yyStates[yyTop], yyState);
- goto yyLoop;
- }
- }
- }
- static short [] yyLhs = { -1,
- 0, 1, 1, 2, 2, 3, 3, 3, 4, 4,
- 4, 4, 4, 5, 5, 5, 6, 6, 6, 6,
- 7, 7, 8, 8, 9, 9, 9, 9, 10, 10,
- 13, 13, 13, 12, 12, 12, 14, 14, 14, 15,
- 15, 16, 16, 16, 18, 18, 18, 19, 19, 19,
- 19, 11, 11, 22, 22, 22, 22, 22, 23, 24,
- 24, 25, 25, 17, 21, 21, 21, 21, 21, 21,
- 21, 21, 21, 21, 21, 21, 21, 20, 20,
- };
- static short [] yyLen = { 2,
- 1, 1, 3, 1, 3, 1, 3, 3, 1, 3,
- 3, 3, 3, 1, 3, 3, 1, 3, 3, 3,
- 1, 2, 1, 3, 1, 1, 3, 3, 1, 1,
- 1, 2, 2, 1, 3, 3, 1, 1, 1, 1,
- 2, 2, 2, 5, 0, 1, 2, 1, 1, 1,
- 1, 1, 2, 2, 3, 1, 1, 1, 4, 0,
- 2, 0, 3, 3, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 0, 1,
- };
- static short [] yyDefRed = { 0,
- 0, 0, 38, 39, 46, 0, 0, 0, 0, 65,
- 66, 67, 68, 69, 70, 71, 72, 73, 74, 75,
- 76, 77, 57, 56, 0, 0, 0, 0, 0, 0,
- 0, 17, 0, 23, 25, 0, 0, 30, 34, 0,
- 40, 0, 0, 52, 58, 0, 0, 0, 0, 22,
- 54, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 53, 0,
- 0, 41, 43, 48, 49, 50, 51, 42, 0, 47,
- 0, 0, 55, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 19, 20, 18, 24, 0, 0, 0,
- 35, 36, 0, 0, 61, 59, 64, 79, 0, 0,
- 44, 63,
- };
- protected static short [] yyDgoto = { 25,
- 26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
- 36, 37, 38, 39, 40, 41, 69, 42, 79, 109,
- 43, 44, 45, 82, 105,
- };
- protected static short [] yySindex = { -254,
- -130, -130, 0, 0, 0, -270, -254, -254, -326, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, -266, -262, -271, -256, -201,
- -267, 0, -258, 0, 0, -238, -169, 0, 0, -250,
- 0, -178, -235, 0, 0, -169, -169, -254, -233, 0,
- 0, -254, -254, -254, -254, -254, -254, -254, -254, -254,
- -254, -254, -254, -254, -189, -130, -130, -254, 0, -130,
- -130, 0, 0, 0, 0, 0, 0, 0, -237, 0,
- -224, -228, 0, -262, -271, -256, -256, -201, -201, -201,
- -201, -267, -267, 0, 0, 0, 0, -169, -169, -222,
- 0, 0, -285, -254, 0, 0, 0, 0, -220, -224,
- 0, 0,
- };
- protected static short [] yyRindex = { -168,
- 1, -168, 0, 0, 0, 0, -168, -168, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 19, 93, 37, 27, 357,
- 276, 0, 250, 0, 0, 85, 114, 0, 0, 59,
- 0, 0, 0, 0, 0, 140, 169, -198, 0, 0,
- 0, -168, -168, -168, -168, -168, -168, -168, -168, -168,
- -168, -168, -168, -168, -168, -168, -168, -168, 0, -168,
- -168, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- -218, 0, 0, 336, 484, 458, 476, 383, 393, 419,
- 429, 302, 328, 0, 0, 0, 0, 195, 224, 0,
- 0, 0, -216, -168, 0, 0, 0, 0, 0, -218,
- 0, 0,
- };
- protected static short [] yyGindex = { -7,
- 0, -1, 12, 40, -33, 38, 25, 0, 7, 0,
- 0, 2, 0, 30, 0, 0, 36, 0, 0, 0,
- 0, 0, 0, 0, -43,
- };
- protected static short [] yyTable = { 49,
- 31, 48, 46, 47, 1, 2, 51, 3, 4, 52,
- 62, 53, 63, 5, 6, 54, 55, 7, 1, 68,
- 66, 67, 88, 89, 90, 91, 6, 65, 8, 80,
- 9, 68, 50, 56, 103, 57, 4, 58, 59, 83,
- 81, 10, 104, 11, 106, 12, 108, 13, 107, 14,
- 84, 15, 111, 16, 62, 17, 78, 18, 37, 19,
- 100, 20, 64, 21, 85, 22, 112, 98, 99, 1,
- 2, 97, 3, 4, 60, 72, 23, 24, 5, 6,
- 60, 61, 7, 0, 26, 45, 94, 95, 96, 70,
- 71, 0, 2, 86, 87, 9, 110, 92, 93, 101,
- 102, 0, 0, 0, 0, 73, 10, 0, 11, 0,
- 12, 0, 13, 29, 14, 45, 15, 0, 16, 0,
- 17, 0, 18, 45, 19, 45, 20, 45, 21, 45,
- 22, 3, 4, 0, 45, 0, 0, 5, 0, 32,
- 0, 23, 24, 74, 0, 75, 0, 76, 0, 77,
- 0, 0, 0, 45, 78, 45, 0, 45, 0, 45,
- 0, 0, 0, 0, 45, 10, 0, 11, 33, 12,
- 0, 13, 0, 14, 0, 15, 0, 16, 0, 17,
- 0, 18, 0, 19, 0, 20, 0, 21, 0, 22,
- 0, 0, 0, 0, 27, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 28, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 21,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 31, 0, 0,
- 0, 31, 0, 31, 31, 14, 31, 0, 31, 0,
- 31, 0, 31, 31, 45, 1, 31, 31, 31, 1,
- 31, 1, 31, 6, 31, 31, 0, 6, 0, 6,
- 6, 15, 6, 4, 0, 0, 0, 4, 0, 4,
- 4, 0, 4, 6, 6, 0, 0, 37, 37, 0,
- 0, 0, 45, 0, 45, 37, 45, 16, 45, 37,
- 31, 37, 37, 45, 37, 3, 37, 0, 37, 0,
- 37, 37, 0, 0, 37, 37, 37, 0, 37, 0,
- 37, 26, 37, 37, 0, 26, 9, 26, 26, 2,
- 26, 0, 26, 2, 26, 2, 26, 26, 2, 0,
- 26, 26, 26, 0, 26, 0, 26, 0, 26, 26,
- 29, 0, 12, 0, 29, 0, 29, 29, 37, 29,
- 0, 29, 13, 29, 0, 29, 29, 0, 0, 29,
- 29, 29, 0, 29, 0, 29, 32, 29, 29, 0,
- 32, 0, 32, 32, 26, 32, 0, 32, 10, 32,
- 0, 32, 32, 0, 0, 32, 32, 32, 11, 32,
- 0, 32, 0, 32, 32, 33, 0, 0, 0, 33,
- 0, 33, 33, 29, 33, 0, 33, 0, 33, 0,
- 33, 33, 0, 0, 33, 33, 33, 7, 33, 0,
- 33, 27, 33, 33, 0, 27, 0, 27, 27, 32,
- 27, 0, 27, 0, 27, 8, 27, 27, 0, 0,
- 27, 27, 27, 5, 27, 0, 27, 0, 27, 27,
- 28, 0, 0, 0, 28, 0, 28, 28, 33, 28,
- 0, 28, 0, 28, 0, 28, 28, 0, 0, 28,
- 28, 28, 0, 28, 0, 28, 21, 28, 28, 0,
- 21, 0, 21, 21, 27, 21, 0, 21, 0, 21,
- 0, 21, 21, 0, 0, 0, 21, 21, 0, 21,
- 0, 21, 14, 21, 21, 0, 14, 0, 14, 14,
- 0, 14, 0, 28, 0, 0, 0, 14, 14, 0,
- 0, 0, 14, 14, 0, 14, 0, 14, 15, 14,
- 14, 0, 15, 0, 15, 15, 0, 15, 0, 21,
- 0, 0, 0, 15, 15, 0, 0, 0, 15, 15,
- 0, 15, 0, 15, 16, 15, 15, 0, 16, 0,
- 16, 16, 3, 16, 0, 0, 3, 0, 3, 16,
- 16, 3, 0, 0, 16, 16, 0, 16, 0, 16,
- 0, 16, 16, 9, 0, 0, 0, 9, 0, 9,
- 9, 0, 9, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 9, 9, 0, 9, 0, 9, 12,
- 9, 9, 0, 12, 0, 12, 12, 0, 12, 13,
- 0, 0, 0, 13, 0, 13, 13, 0, 13, 12,
- 12, 0, 12, 0, 12, 0, 12, 12, 0, 13,
- 13, 0, 13, 0, 13, 10, 13, 13, 0, 10,
- 0, 10, 10, 0, 10, 11, 0, 0, 0, 11,
- 0, 11, 11, 0, 11, 10, 10, 0, 10, 0,
- 10, 0, 10, 10, 0, 11, 11, 0, 11, 0,
- 11, 0, 11, 11, 7, 0, 0, 0, 7, 0,
- 7, 7, 0, 7, 0, 0, 0, 0, 0, 0,
- 0, 0, 8, 0, 7, 7, 8, 0, 8, 8,
- 5, 8, 0, 0, 5, 0, 5, 5, 0, 5,
- 0, 0, 8, 8,
- };
- protected static short [] yyCheck = { 7,
- 0, 272, 1, 2, 259, 260, 333, 262, 263, 276,
- 278, 274, 280, 268, 269, 287, 288, 272, 0, 270,
- 259, 260, 56, 57, 58, 59, 0, 286, 283, 265,
- 285, 270, 8, 290, 272, 292, 0, 294, 295, 273,
- 48, 296, 267, 298, 273, 300, 332, 302, 271, 304,
- 52, 306, 273, 308, 273, 310, 273, 312, 0, 314,
- 68, 316, 330, 318, 53, 320, 110, 66, 67, 259,
- 260, 65, 262, 263, 273, 40, 331, 332, 268, 269,
- 282, 283, 272, -1, 0, 284, 62, 63, 64, 259,
- 260, -1, 0, 54, 55, 285, 104, 60, 61, 70,
- 71, -1, -1, -1, -1, 284, 296, -1, 298, -1,
- 300, -1, 302, 0, 304, 284, 306, -1, 308, -1,
- 310, -1, 312, 322, 314, 324, 316, 326, 318, 328,
- 320, 262, 263, -1, 333, -1, -1, 268, -1, 0,
- -1, 331, 332, 322, -1, 324, -1, 326, -1, 328,
- -1, -1, -1, 322, 333, 324, -1, 326, -1, 328,
- -1, -1, -1, -1, 333, 296, -1, 298, 0, 300,
- -1, 302, -1, 304, -1, 306, -1, 308, -1, 310,
- -1, 312, -1, 314, -1, 316, -1, 318, -1, 320,
- -1, -1, -1, -1, 0, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 0, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 0,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 267, -1, -1,
- -1, 271, -1, 273, 274, 0, 276, -1, 278, -1,
- 280, -1, 282, 283, 284, 267, 286, 287, 288, 271,
- 290, 273, 292, 267, 294, 295, -1, 271, -1, 273,
- 274, 0, 276, 267, -1, -1, -1, 271, -1, 273,
- 274, -1, 276, 287, 288, -1, -1, 259, 260, -1,
- -1, -1, 322, -1, 324, 267, 326, 0, 328, 271,
- 330, 273, 274, 333, 276, 0, 278, -1, 280, -1,
- 282, 283, -1, -1, 286, 287, 288, -1, 290, -1,
- 292, 267, 294, 295, -1, 271, 0, 273, 274, 267,
- 276, -1, 278, 271, 280, 273, 282, 283, 276, -1,
- 286, 287, 288, -1, 290, -1, 292, -1, 294, 295,
- 267, -1, 0, -1, 271, -1, 273, 274, 330, 276,
- -1, 278, 0, 280, -1, 282, 283, -1, -1, 286,
- 287, 288, -1, 290, -1, 292, 267, 294, 295, -1,
- 271, -1, 273, 274, 330, 276, -1, 278, 0, 280,
- -1, 282, 283, -1, -1, 286, 287, 288, 0, 290,
- -1, 292, -1, 294, 295, 267, -1, -1, -1, 271,
- -1, 273, 274, 330, 276, -1, 278, -1, 280, -1,
- 282, 283, -1, -1, 286, 287, 288, 0, 290, -1,
- 292, 267, 294, 295, -1, 271, -1, 273, 274, 330,
- 276, -1, 278, -1, 280, 0, 282, 283, -1, -1,
- 286, 287, 288, 0, 290, -1, 292, -1, 294, 295,
- 267, -1, -1, -1, 271, -1, 273, 274, 330, 276,
- -1, 278, -1, 280, -1, 282, 283, -1, -1, 286,
- 287, 288, -1, 290, -1, 292, 267, 294, 295, -1,
- 271, -1, 273, 274, 330, 276, -1, 278, -1, 280,
- -1, 282, 283, -1, -1, -1, 287, 288, -1, 290,
- -1, 292, 267, 294, 295, -1, 271, -1, 273, 274,
- -1, 276, -1, 330, -1, -1, -1, 282, 283, -1,
- -1, -1, 287, 288, -1, 290, -1, 292, 267, 294,
- 295, -1, 271, -1, 273, 274, -1, 276, -1, 330,
- -1, -1, -1, 282, 283, -1, -1, -1, 287, 288,
- -1, 290, -1, 292, 267, 294, 295, -1, 271, -1,
- 273, 274, 267, 276, -1, -1, 271, -1, 273, 282,
- 283, 276, -1, -1, 287, 288, -1, 290, -1, 292,
- -1, 294, 295, 267, -1, -1, -1, 271, -1, 273,
- 274, -1, 276, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 287, 288, -1, 290, -1, 292, 267,
- 294, 295, -1, 271, -1, 273, 274, -1, 276, 267,
- -1, -1, -1, 271, -1, 273, 274, -1, 276, 287,
- 288, -1, 290, -1, 292, -1, 294, 295, -1, 287,
- 288, -1, 290, -1, 292, 267, 294, 295, -1, 271,
- -1, 273, 274, -1, 276, 267, -1, -1, -1, 271,
- -1, 273, 274, -1, 276, 287, 288, -1, 290, -1,
- 292, -1, 294, 295, -1, 287, 288, -1, 290, -1,
- 292, -1, 294, 295, 267, -1, -1, -1, 271, -1,
- 273, 274, -1, 276, -1, -1, -1, -1, -1, -1,
- -1, -1, 267, -1, 287, 288, 271, -1, 273, 274,
- 267, 276, -1, -1, 271, -1, 273, 274, -1, 276,
- -1, -1, 287, 288,
- };
- // line 408 "Parser.jay"
- }
- // line 935
- namespace yydebug {
- using System;
- public interface yyDebug {
- void push (int state, Object value);
- void lex (int state, int token, string name, Object value);
- void shift (int from, int to, int errorFlag);
- void pop (int state);
- void discard (int state, int token, string name, Object value);
- void reduce (int from, int to, int rule, string text, int len);
- void shift (int from, int to);
- void accept (Object value);
- void error (string message);
- void reject ();
- }
-
- class yyDebugSimple : yyDebug {
- void println (string s){
- Console.WriteLine (s);
- }
-
- public void push (int state, Object value) {
- println ("push\tstate "+state+"\tvalue "+value);
- }
-
- public void lex (int state, int token, string name, Object value) {
- println("lex\tstate "+state+"\treading "+name+"\tvalue "+value);
- }
-
- public void shift (int from, int to, int errorFlag) {
- switch (errorFlag) {
- default: // normally
- println("shift\tfrom state "+from+" to "+to);
- break;
- case 0: case 1: case 2: // in error recovery
- println("shift\tfrom state "+from+" to "+to
- +"\t"+errorFlag+" left to recover");
- break;
- case 3: // normally
- println("shift\tfrom state "+from+" to "+to+"\ton error");
- break;
- }
- }
-
- public void pop (int state) {
- println("pop\tstate "+state+"\ton error");
- }
-
- public void discard (int state, int token, string name, Object value) {
- println("discard\tstate "+state+"\ttoken "+name+"\tvalue "+value);
- }
-
- public void reduce (int from, int to, int rule, string text, int len) {
- println("reduce\tstate "+from+"\tuncover "+to
- +"\trule ("+rule+") "+text);
- }
-
- public void shift (int from, int to) {
- println("goto\tfrom state "+from+" to "+to);
- }
-
- public void accept (Object value) {
- println("accept\tvalue "+value);
- }
-
- public void error (string message) {
- println("error\t"+message);
- }
-
- public void reject () {
- println("reject");
- }
-
- }
- }
- // %token constants
- class Token {
- public const int ERROR = 257;
- public const int EOF = 258;
- public const int SLASH = 259;
- public const int SLASH2 = 260;
- public const int DOT = 262;
- public const int DOT2 = 263;
- public const int COLON2 = 265;
- public const int COMMA = 267;
- public const int AT = 268;
- public const int FUNCTION_NAME = 269;
- public const int BRACKET_OPEN = 270;
- public const int BRACKET_CLOSE = 271;
- public const int PAREN_OPEN = 272;
- public const int PAREN_CLOSE = 273;
- public const int AND = 274;
- public const int and = 275;
- public const int OR = 276;
- public const int or = 277;
- public const int DIV = 278;
- public const int div = 279;
- public const int MOD = 280;
- public const int mod = 281;
- public const int PLUS = 282;
- public const int MINUS = 283;
- public const int ASTERISK = 284;
- public const int DOLLAR = 285;
- public const int BAR = 286;
- public const int EQ = 287;
- public const int NE = 288;
- public const int LE = 290;
- public const int GE = 292;
- public const int LT = 294;
- public const int GT = 295;
- public const int ANCESTOR = 296;
- public const int ancestor = 297;
- public const int ANCESTOR_OR_SELF = 298;
- public const int ATTRIBUTE = 300;
- public const int attribute = 301;
- public const int CHILD = 302;
- public const int child = 303;
- public const int DESCENDANT = 304;
- public const int descendant = 305;
- public const int DESCENDANT_OR_SELF = 306;
- public const int FOLLOWING = 308;
- public const int following = 309;
- public const int FOLLOWING_SIBLING = 310;
- public const int sibling = 311;
- public const int NAMESPACE = 312;
- public const int NameSpace = 313;
- public const int PARENT = 314;
- public const int parent = 315;
- public const int PRECEDING = 316;
- public const int preceding = 317;
- public const int PRECEDING_SIBLING = 318;
- public const int SELF = 320;
- public const int self = 321;
- public const int COMMENT = 322;
- public const int comment = 323;
- public const int TEXT = 324;
- public const int text = 325;
- public const int PROCESSING_INSTRUCTION = 326;
- public const int NODE = 328;
- public const int node = 329;
- public const int MULTIPLY = 330;
- public const int NUMBER = 331;
- public const int LITERAL = 332;
- public const int QName = 333;
- public const int yyErrorCode = 256;
- }
- namespace yyParser {
- using System;
- /** thrown for irrecoverable syntax errors and stack overflow.
- */
- public class yyException : System.Exception {
- public yyException (string message) : base (message) {
- }
- }
- /** must be implemented by a scanner object to supply input to the parser.
- */
- public interface yyInput {
- /** move on to next token.
- @return false if positioned beyond tokens.
- @throws IOException on input error.
- */
- bool advance (); // throws java.io.IOException;
- /** classifies current token.
- Should not be called if advance() returned false.
- @return current %token or single character.
- */
- int token ();
- /** associated with current token.
- Should not be called if advance() returned false.
- @return value for token().
- */
- Object value ();
- }
- }
- } // close outermost namespace, that MUST HAVE BEEN opened in the prolog
|