JavaPatternMatching/src/de/dhbwstuttgart/parser/JavaParser.java

4035 lines
169 KiB
Java
Raw Normal View History

2014-07-09 08:52:23 +00:00
// created by jay 0.7 (c) 1998 Axel.Schreiner@informatik.uni-osnabrueck.de
2014-09-08 13:12:47 +00:00
// line 2 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
/*
Backup von JavaParser.jay 10.April 17 Uhr
*/
package de.dhbwstuttgart.parser;
2014-07-09 08:52:23 +00:00
2014-09-02 08:33:54 +00:00
import de.dhbwstuttgart.core.AClassOrInterface;
import de.dhbwstuttgart.syntaxtree.Class;
2014-11-04 12:47:05 +00:00
import de.dhbwstuttgart.logger.Section;
2014-09-02 08:33:54 +00:00
import de.dhbwstuttgart.syntaxtree.ImportDeclarations;
2014-09-04 14:35:44 +00:00
import de.dhbwstuttgart.syntaxtree.Interface;
import de.dhbwstuttgart.syntaxtree.SourceFile;
2014-09-02 08:33:54 +00:00
import de.dhbwstuttgart.syntaxtree.misc.UsedId;
2014-09-08 13:12:47 +00:00
import de.dhbwstuttgart.typeinference.Pair;
2014-09-02 08:33:54 +00:00
import de.dhbwstuttgart.syntaxtree.type.Type;
import de.dhbwstuttgart.syntaxtree.type.Void;
2014-09-08 13:12:47 +00:00
import de.dhbwstuttgart.*;
import de.dhbwstuttgart.syntaxtree.*;
import de.dhbwstuttgart.syntaxtree.misc.*;
import de.dhbwstuttgart.syntaxtree.modifier.*;
import de.dhbwstuttgart.syntaxtree.operator.*;
import de.dhbwstuttgart.syntaxtree.type.*;
import de.dhbwstuttgart.syntaxtree.statement.*;
import java.util.Vector;
2014-07-09 08:52:23 +00:00
public class JavaParser{
public Vector path = new Vector();
//PL 05-07-30 eingefuegt. ANFANG
private Vector<Type> containedTypes = new Vector<Type>();
private Vector<UsedId> usedIdsToCheck = new Vector<UsedId>();
//Vektor aller Typdeklarationen die in aktueller Klasse vorkommen.
//wird nach Beendigung der Klasse des Attributs der jeweiligen
//Klasse zugeordnet
//nach dem Parsen wird mit wandleGeneric2RefType die
//die RefTypes gesetzt.
void initContainedTypes() {
this.containedTypes = new Vector<Type>();
}
void initUsedIdsToCheck() {
this.usedIdsToCheck = new Vector<UsedId>();
}
//PL 05-07-30 eingefuegt. ENDE
//LUAR 07-05-29 Anfang f<>r Wildcard Test
public Vector<Pair> testPair = new Vector<Pair>();
//LUAR 07-05-29 Ende
2014-11-04 12:47:05 +00:00
// line 53 "-"
2014-07-09 08:52:23 +00:00
// %token constants
//{ //ergaenzt PL 23.01.01 wieder entfernt 21.12.01
public static final int ABSTRACT = 257;
public static final int BOOLEAN = 258;
public static final int BREAK = 259;
public static final int CASE = 260;
public static final int CATCH = 261;
public static final int CHAR = 262;
public static final int CLASS = 263;
public static final int CONTINUE = 264;
public static final int DEFAULT = 265;
public static final int DO = 266;
public static final int ELSE = 267;
public static final int EXTENDS = 268;
public static final int FINAL = 269;
public static final int FINALLY = 270;
public static final int FOR = 271;
public static final int IF = 272;
public static final int INSTANCEOF = 273;
public static final int INT = 274;
public static final int NEW = 275;
public static final int PRIVATE = 276;
public static final int PROTECTED = 277;
public static final int PUBLIC = 278;
public static final int PACKAGE = 279;
public static final int IMPORT = 280;
public static final int INTERFACE = 281;
public static final int IMPLEMENTS = 282;
public static final int RETURN = 283;
public static final int STATIC = 284;
public static final int SUPER = 285;
public static final int SWITCH = 286;
public static final int THIS = 287;
public static final int THROW = 288;
public static final int THROWS = 289;
public static final int TRY = 290;
public static final int VOID = 291;
public static final int WHILE = 292;
public static final int INTLITERAL = 293;
public static final int LONGLITERAL = 294;
public static final int DOUBLELITERAL = 295;
public static final int FLOATLITERAL = 296;
public static final int BOOLLITERAL = 297;
public static final int JNULL = 298;
public static final int CHARLITERAL = 299;
public static final int STRINGLITERAL = 300;
public static final int IDENTIFIER = 301;
public static final int EQUAL = 302;
public static final int LESSEQUAL = 303;
public static final int GREATEREQUAL = 304;
public static final int NOTEQUAL = 305;
public static final int LOGICALOR = 306;
public static final int LOGICALAND = 307;
public static final int INCREMENT = 308;
public static final int DECREMENT = 309;
public static final int SHIFTLEFT = 310;
public static final int SHIFTRIGHT = 311;
public static final int UNSIGNEDSHIFTRIGHT = 312;
public static final int SIGNEDSHIFTRIGHT = 313;
public static final int PLUSEQUAL = 314;
public static final int MINUSEQUAL = 315;
public static final int TIMESEQUAL = 316;
public static final int DIVIDEEQUAL = 317;
public static final int ANDEQUAL = 318;
public static final int OREQUAL = 319;
public static final int XOREQUAL = 320;
public static final int MODULOEQUAL = 321;
public static final int SHIFTLEFTEQUAL = 322;
public static final int SIGNEDSHIFTRIGHTEQUAL = 323;
public static final int UNSIGNEDSHIFTRIGHTEQUAL = 324;
public static final int BRACE = 325;
public static final int RELOP = 326;
public static final int OP = 327;
public static final int EOF = 328;
public static final int LAMBDAASSIGNMENT = 329;
public static final int ENDOFGENERICVARDECLARATION = 330;
public static final int yyErrorCode = 256;
/** thrown for irrecoverable syntax errors and stack overflow.
*/
public static class yyException extends java.lang.Exception {
public Token token;
public yyException (String message, Token token) {
super(message);
this.token=token;
}
}
/** 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.
*/
boolean 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 ();
}
/** 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 String yyerror (String message, String[] expected) {
if (expected != null && expected.length > 0) {
System.err.print(message+", expecting");
message+=", expecting";
for (int n = 0; n < expected.length; ++ n){
System.err.print(" "+expected[n]);
message+=" "+expected[n];}
System.err.println();
return message;
} else{
System.err.println(message);
return message;}
}
/** debugging support, requires the package jay.yydebug.
Set to null to suppress debugging messages.
*/
//t protected jay.yydebug.yyDebug yydebug;
protected static final int yyFinal = 15;
//t public static final String yyRule [] = {
//t "$accept : compilationunit",
//t "compilationunit : typedeclarations",
//t "compilationunit : importdeclarations typedeclarations",
//t "compilationunit : packagedeclaration importdeclarations typedeclarations",
//t "compilationunit : packagedeclaration typedeclarations",
//t "compilationunit : type type compilationunit",
//t "packagedeclaration : PACKAGE name ';'",
//t "importdeclarations : importdeclaration",
//t "importdeclarations : importdeclarations importdeclaration",
//t "importdeclaration : IMPORT importqualifiedname ';'",
//t "typedeclarations : typedeclaration",
//t "typedeclarations : typedeclarations typedeclaration",
//t "name : qualifiedname",
//t "name : simplename",
//t "typedeclaration : classdeclaration",
//t "typedeclaration : interfacedeclaration",
//t "qualifiedname : name '.' IDENTIFIER",
//t "importqualifiedname : name '.' IDENTIFIER",
//t "importqualifiedname : name '.' '*'",
//t "simplename : IDENTIFIER",
//t "classdeclaration : CLASS classidentifier classbody",
//t "classdeclaration : modifiers CLASS classidentifier classbody",
//t "classdeclaration : CLASS classidentifier super classbody",
//t "classdeclaration : modifiers CLASS classidentifier super classbody",
//t "classdeclaration : CLASS classidentifier interfaces classbody",
//t "classdeclaration : modifiers CLASS classidentifier interfaces classbody",
//t "classdeclaration : CLASS classidentifier super interfaces classbody",
//t "classdeclaration : modifiers CLASS classidentifier super interfaces classbody",
//t "interfaceidentifier : IDENTIFIER",
//t "interfaceidentifier : IDENTIFIER '<' boundedClassParameters '>'",
//t "classidentifier : IDENTIFIER",
//t "classidentifier : IDENTIFIER '<' boundedClassParameters '>'",
//t "interfacedeclaration : INTERFACE interfaceidentifier interfacebody",
//t "interfacedeclaration : modifiers INTERFACE interfaceidentifier interfacebody",
//t "interfacedeclaration : INTERFACE interfaceidentifier extendsinterfaces interfacebody",
//t "interfacedeclaration : modifiers INTERFACE interfaceidentifier extendsinterfaces interfacebody",
//t "paralist : IDENTIFIER",
//t "paralist : IDENTIFIER '<' paralist '>'",
//t "paralist : wildcardparameter",
//t "paralist : paralist ',' IDENTIFIER",
//t "paralist : paralist ',' IDENTIFIER '<' paralist '>'",
//t "paralist : paralist ',' wildcardparameter",
//t "wildcardparameter : '?'",
//t "wildcardparameter : '?' EXTENDS referencetype",
//t "wildcardparameter : '?' SUPER referencetype",
//t "classbody : '{' '}'",
//t "classbody : '{' classbodydeclarations '}'",
//t "modifiers : modifier",
//t "modifiers : modifiers modifier",
//t "super : EXTENDS classtype",
//t "interfaces : IMPLEMENTS interfacetype",
//t "interfaces : interfaces ',' interfacetype",
//t "interfacebody : '{' '}'",
//t "interfacebody : '{' interfacememberdeclarations '}'",
//t "extendsinterfaces : EXTENDS interfacetype",
//t "extendsinterfaces : extendsinterfaces ',' interfacetype",
//t "classbodydeclarations : classbodydeclaration",
//t "classbodydeclarations : classbodydeclarations classbodydeclaration",
//t "modifier : PUBLIC",
//t "modifier : PROTECTED",
//t "modifier : PRIVATE",
//t "modifier : STATIC",
//t "modifier : ABSTRACT",
//t "modifier : FINAL",
//t "classtype : classorinterfacetype",
//t "interfacememberdeclarations : interfacememberdeclaration",
//t "interfacememberdeclarations : interfacememberdeclarations interfacememberdeclaration",
//t "interfacetype : classorinterfacetype",
//t "classbodydeclaration : classmemberdeclaration",
//t "classbodydeclaration : staticinitializer",
//t "classbodydeclaration : constructordeclaration",
//t "classorinterfacetype : name parameter",
2014-07-09 08:52:23 +00:00
//t "typelist : type",
//t "typelist : typelist ',' type",
2014-08-07 15:13:55 +00:00
//t "typelist : typelist ',' wildcardparameter",
//t "typelist : wildcardparameter",
2014-07-09 08:52:23 +00:00
//t "parameter :",
//t "parameter : '<' typelist '>'",
//t "interfacememberdeclaration : constantdeclaration",
//t "interfacememberdeclaration : abstractmethoddeclaration",
//t "classmemberdeclaration : fielddeclaration",
//t "classmemberdeclaration : methoddeclaration",
//t "staticinitializer : STATIC block",
//t "constructordeclaration : constructordeclarator constructorbody",
//t "constructordeclaration : modifiers constructordeclarator constructorbody",
//t "constantdeclaration : modifiers type IDENTIFIER '=' expression ';'",
//t "abstractmethoddeclaration : methodheader ';'",
//t "fielddeclarator : variabledeclarator '=' expression",
2014-07-09 13:07:40 +00:00
//t "fielddeclarator : variabledeclarator",
//t "genericdeclarationlist : '<' boundedMethodParameters '>'",
2014-07-09 08:52:23 +00:00
//t "fielddeclaration : type fielddeclarator ';'",
//t "fielddeclaration : fielddeclarator ';'",
2014-07-09 08:52:23 +00:00
//t "fielddeclaration : genericdeclarationlist type fielddeclarator ';'",
//t "fielddeclaration : variabledeclarators ';'",
//t "fielddeclaration : type variabledeclarators ';'",
//t "fielddeclaration : modifiers type variabledeclarators ';'",
//t "methoddeclaration : methodheader methodbody",
//t "block : '{' '}'",
//t "block : '{' blockstatements '}'",
//t "constructordeclarator : simplename '(' ')'",
//t "constructordeclarator : simplename '(' formalparameterlist ')'",
//t "constructorbody : '{' '}'",
//t "constructorbody : '{' explicitconstructorinvocation '}'",
//t "constructorbody : '{' blockstatements '}'",
//t "constructorbody : '{' explicitconstructorinvocation blockstatements '}'",
//t "throws : THROWS classtypelist",
//t "boundedClassParameter : boundedMethodParameter",
//t "boundedClassParameters : boundedClassParameter",
//t "boundedClassParameters : boundedClassParameters ',' boundedClassParameter",
//t "boundedMethodParameter : IDENTIFIER",
//t "boundedMethodParameter : IDENTIFIER EXTENDS boundedclassidentifierlist",
//t "boundedclassidentifierlist : referencetype",
//t "boundedclassidentifierlist : boundedclassidentifierlist '&' referencetype",
//t "boundedMethodParameters : boundedMethodParameter",
//t "boundedMethodParameters : boundedMethodParameters ',' boundedMethodParameter",
//t "methodheader : genericdeclarationlist type methoddeclarator",
//t "methodheader : type methoddeclarator",
//t "methodheader : modifiers type methoddeclarator",
//t "methodheader : modifiers genericdeclarationlist type methoddeclarator",
//t "methodheader : type methoddeclarator throws",
//t "methodheader : genericdeclarationlist type methoddeclarator throws",
//t "methodheader : modifiers type methoddeclarator throws",
//t "methodheader : modifiers genericdeclarationlist type methoddeclarator throws",
//t "methodheader : VOID methoddeclarator",
//t "methodheader : modifiers VOID methoddeclarator",
//t "methodheader : VOID methoddeclarator throws",
//t "methodheader : modifiers VOID methoddeclarator throws",
//t "methodheader : genericdeclarationlist VOID methoddeclarator",
//t "methodheader : modifiers genericdeclarationlist VOID methoddeclarator",
//t "methodheader : genericdeclarationlist VOID methoddeclarator throws",
//t "methodheader : modifiers genericdeclarationlist VOID methoddeclarator throws",
//t "methodheader : methoddeclarator",
//t "methodheader : genericdeclarationlist methoddeclarator",
//t "methodheader : modifiers methoddeclarator",
//t "methodheader : methoddeclarator throws",
//t "methodheader : modifiers methoddeclarator throws",
//t "type : primitivetype",
//t "type : primitivetype '[' ']'",
//t "type : referencetype",
//t "type : referencetype '[' ']'",
//t "variabledeclarators : variabledeclarator",
//t "variabledeclarators : variabledeclarators ',' variabledeclarator",
//t "methodbody : block",
//t "blockstatements : blockstatement",
//t "blockstatements : blockstatements blockstatement",
//t "formalparameterlist : formalparameter",
//t "formalparameterlist : formalparameterlist ',' formalparameter",
//t "explicitconstructorinvocation : THIS '(' ')' ';'",
//t "explicitconstructorinvocation : THIS '(' argumentlist ')' ';'",
//t "classtypelist : classtype",
//t "classtypelist : classtypelist ',' classtype",
//t "methoddeclarator : IDENTIFIER '(' ')'",
//t "methoddeclarator : IDENTIFIER '(' formalparameterlist ')'",
//t "primitivetype : BOOLEAN",
//t "primitivetype : numerictype",
//t "referencetype : classorinterfacetype",
//t "variabledeclarator : variabledeclaratorid",
//t "blockstatement : localvariabledeclarationstatement",
//t "blockstatement : statement",
//t "formalparameter : type variabledeclaratorid",
//t "formalparameter : variabledeclaratorid",
//t "argumentlist : expression",
//t "argumentlist : argumentlist ',' expression",
//t "numerictype : integraltype",
//t "variabledeclaratorid : IDENTIFIER",
//t "variableinitializer : expression",
//t "localvariabledeclarationstatement : localvariabledeclaration ';'",
//t "statement : statementwithouttrailingsubstatement",
//t "statement : ifthenstatement",
//t "statement : ifthenelsestatement",
//t "statement : whilestatement",
//t "statement : forstatement",
//t "statement : explicitconstructorinvocation",
2014-07-09 08:52:23 +00:00
//t "expression : assignmentexpression",
//t "expression : classinstancecreationexpression",
//t "integraltype : INT",
//t "integraltype : CHAR",
//t "localvariabledeclaration : type variabledeclarators",
//t "localvariabledeclaration : variabledeclarators",
//t "statementwithouttrailingsubstatement : block",
//t "statementwithouttrailingsubstatement : emptystatement",
//t "statementwithouttrailingsubstatement : expressionstatement",
//t "statementwithouttrailingsubstatement : returnstatement",
//t "ifthenstatement : IF '(' expression ')' statement",
//t "ifthenelsestatement : IF '(' expression ')' statementnoshortif ELSE statement",
//t "whilestatement : WHILE '(' expression ')' statement",
//t "forstatement : FOR '(' expression ';' expression ';' expression ')' statement",
//t "forstatement : FOR '(' expression ';' expression ';' ')' statement",
//t "forstatement : FOR '(' expression ';' ';' expression ')' statement",
//t "forstatement : FOR '(' ';' expression ';' expression ')' statement",
//t "forstatement : FOR '(' expression ';' ';' ')' statement",
//t "forstatement : FOR '(' ';' expression ';' ')' statement",
//t "forstatement : FOR '(' ';' ';' expression ')' statement",
//t "forstatement : FOR '(' ';' ';' ')' statement",
//t "assignmentexpression : conditionalexpression",
//t "assignmentexpression : assignment",
//t "emptystatement : ';'",
//t "expressionstatement : statementexpression ';'",
//t "returnstatement : RETURN ';'",
//t "returnstatement : RETURN expression ';'",
//t "statementnoshortif : statementwithouttrailingsubstatement",
//t "statementnoshortif : ifthenelsestatementnoshortif",
//t "statementnoshortif : whilestatementnoshortif",
//t "conditionalexpression : conditionalorexpression",
//t "assignment : lefthandside assignmentoperator assignmentexpression",
//t "assignment : lefthandside assignmentoperator classinstancecreationexpression",
//t "statementexpression : assignment",
//t "statementexpression : preincrementexpression",
//t "statementexpression : predecrementexpression",
//t "statementexpression : postincrementexpression",
//t "statementexpression : postdecrementexpression",
//t "statementexpression : methodinvocation",
//t "ifthenelsestatementnoshortif : IF '(' expression ')' statementnoshortif ELSE statementnoshortif",
//t "whilestatementnoshortif : WHILE '(' expression ')' statementnoshortif",
//t "conditionalorexpression : conditionalandexpression",
//t "conditionalorexpression : conditionalorexpression LOGICALOR conditionalandexpression",
//t "lambdaassignmentoperator : LAMBDAASSIGNMENT",
//t "lambdabody : block",
//t "lambdabody : expression",
//t "lambdaexpressionparameter : '(' ')'",
//t "lambdaexpressionparameter : '(' formalparameterlist ')'",
//t "lambdaexpression : lambdaexpressionparameter lambdaassignmentoperator lambdabody",
//t "lefthandside : name",
//t "assignmentoperator : '='",
//t "assignmentoperator : TIMESEQUAL",
//t "assignmentoperator : DIVIDEEQUAL",
//t "assignmentoperator : MODULOEQUAL",
//t "assignmentoperator : PLUSEQUAL",
//t "assignmentoperator : MINUSEQUAL",
//t "preincrementexpression : INCREMENT unaryexpression",
//t "predecrementexpression : DECREMENT unaryexpression",
//t "postincrementexpression : postfixexpression INCREMENT",
//t "postdecrementexpression : postfixexpression DECREMENT",
//t "methodinvocation : name '(' ')'",
//t "methodinvocation : name '(' argumentlist ')'",
//t "methodinvocation : primary '.' IDENTIFIER '(' ')'",
//t "methodinvocation : primary '.' IDENTIFIER '(' argumentlist ')'",
//t "classinstancecreationexpression : NEW classtype '(' ')'",
//t "classinstancecreationexpression : NEW classtype '(' argumentlist ')'",
//t "conditionalandexpression : inclusiveorexpression",
//t "conditionalandexpression : conditionalandexpression LOGICALAND inclusiveorexpression",
//t "unaryexpression : preincrementexpression",
//t "unaryexpression : predecrementexpression",
//t "unaryexpression : '+' unaryexpression",
//t "unaryexpression : '-' unaryexpression",
//t "unaryexpression : unaryexpressionnotplusminus",
//t "postfixexpression : primary",
//t "postfixexpression : name",
//t "postfixexpression : postincrementexpression",
//t "postfixexpression : postdecrementexpression",
//t "primary : primarynonewarray",
//t "inclusiveorexpression : exclusiveorexpression",
//t "inclusiveorexpression : inclusiveorexpression '|' exclusiveorexpression",
//t "primarynonewarray : literal",
//t "primarynonewarray : THIS",
//t "primarynonewarray : methodinvocation",
//t "primarynonewarray : lambdaexpression",
//t "unaryexpressionnotplusminus : postfixexpression",
//t "unaryexpressionnotplusminus : '!' unaryexpression",
//t "unaryexpressionnotplusminus : castexpression",
//t "exclusiveorexpression : andexpression",
//t "exclusiveorexpression : exclusiveorexpression '^' andexpression",
//t "literal : INTLITERAL",
//t "literal : BOOLLITERAL",
//t "literal : CHARLITERAL",
//t "literal : STRINGLITERAL",
//t "literal : LONGLITERAL",
//t "literal : FLOATLITERAL",
//t "literal : DOUBLELITERAL",
//t "literal : JNULL",
//t "castexpression : '(' primitivetype ')' unaryexpression",
//t "andexpression : equalityexpression",
//t "andexpression : andexpression '&' equalityexpression",
//t "equalityexpression : relationalexpression",
//t "equalityexpression : equalityexpression EQUAL relationalexpression",
//t "equalityexpression : equalityexpression NOTEQUAL relationalexpression",
//t "relationalexpression : shiftexpression",
//t "relationalexpression : relationalexpression '<' shiftexpression",
//t "relationalexpression : relationalexpression '>' shiftexpression",
//t "relationalexpression : relationalexpression LESSEQUAL shiftexpression",
//t "relationalexpression : relationalexpression GREATEREQUAL shiftexpression",
//t "relationalexpression : relationalexpression INSTANCEOF referencetype",
//t "shiftexpression : additiveexpression",
//t "additiveexpression : multiplicativeexpression",
//t "additiveexpression : additiveexpression '+' multiplicativeexpression",
//t "additiveexpression : additiveexpression '-' multiplicativeexpression",
//t "multiplicativeexpression : unaryexpression",
//t "multiplicativeexpression : multiplicativeexpression '*' unaryexpression",
//t "multiplicativeexpression : multiplicativeexpression '/' unaryexpression",
//t "multiplicativeexpression : multiplicativeexpression '%' unaryexpression",
//t };
protected static final 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,
"ABSTRACT","BOOLEAN","BREAK","CASE","CATCH","CHAR","CLASS","CONTINUE",
"DEFAULT","DO","ELSE","EXTENDS","FINAL","FINALLY","FOR","IF",
"INSTANCEOF","INT","NEW","PRIVATE","PROTECTED","PUBLIC","PACKAGE",
"IMPORT","INTERFACE","IMPLEMENTS","RETURN","STATIC","SUPER","SWITCH",
"THIS","THROW","THROWS","TRY","VOID","WHILE","INTLITERAL",
"LONGLITERAL","DOUBLELITERAL","FLOATLITERAL","BOOLLITERAL","JNULL",
"CHARLITERAL","STRINGLITERAL","IDENTIFIER","EQUAL","LESSEQUAL",
"GREATEREQUAL","NOTEQUAL","LOGICALOR","LOGICALAND","INCREMENT",
"DECREMENT","SHIFTLEFT","SHIFTRIGHT","UNSIGNEDSHIFTRIGHT",
"SIGNEDSHIFTRIGHT","PLUSEQUAL","MINUSEQUAL","TIMESEQUAL",
"DIVIDEEQUAL","ANDEQUAL","OREQUAL","XOREQUAL","MODULOEQUAL",
"SHIFTLEFTEQUAL","SIGNEDSHIFTRIGHTEQUAL","UNSIGNEDSHIFTRIGHTEQUAL",
"BRACE","RELOP","OP","EOF","LAMBDAASSIGNMENT",
2015-01-16 13:48:20 +00:00
"ENDOFGENERICVARDECLARATION",
2014-07-09 08:52:23 +00:00
};
/** index-checked interface to yyName[].
@param token single character or %token value.
@return token name or [illegal] or [unknown].
*/
//t public static final String yyname (int token) {
//t if (token < 0 || token > yyName.length) return "[illegal]";
//t String name;
//t if ((name = yyName[token]) != null) return name;
//t return "[unknown]";
//t }
/** 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) {
// yyCheck durch yyCheckInit.yyCheck; ersetzt PL 25.1.01
int token, n, len = 0;
boolean[] ok = new boolean[yyName.length];
if ((n = yySindex[state]) != 0)
for (token = n < 0 ? -n : 0;
token < yyName.length && n+token < yyTable.length; ++ token)
if (yyCheckInit.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 (yyCheckInit.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 (yyInput yyLex, Object yydebug)
throws java.io.IOException, yyException {
//t this.yydebug = (jay.yydebug.yyDebug)yydebug;
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 (yyInput yyLex)
throws java.io.IOException, yyException {
// yyCheck durch yyCheckInit.yyCheck; ersetzt PL 23.1.01
yyCheckInit.yyCheckInit(); // initial yyCheck eingefuegt PL 25.1.01
if (yyMax <= 0) yyMax = 256; // initial size
int yyState = 0, yyStates[] = new int[yyMax]; // state stack
Object yyVal = null, yyVals[] = new Object[yyMax]; // value stack
int yyToken = -1; // current input
int yyErrorFlag = 0; // #tks to shift
Scanner yyScanner = (Scanner)yyLex;
String yyErrorString = "irrecoverable syntax error";
yyLoop: for (int yyTop = 0;; ++ yyTop) {
if (yyTop >= yyStates.length) { // dynamically increase
int[] i = new int[yyStates.length+yyMax];
System.arraycopy(yyStates, 0, i, 0, yyStates.length);
yyStates = i;
Object[] o = new Object[yyVals.length+yyMax];
System.arraycopy(yyVals, 0, o, 0, yyVals.length);
yyVals = o;
}
yyStates[yyTop] = yyState;
yyVals[yyTop] = yyVal;
//t if (yydebug != null) yydebug.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;
//t if (yydebug != null)
//t yydebug.lex(yyState, yyToken, yyname(yyToken), yyLex.value());
}
if ((yyN = yySindex[yyState]) != 0 && (yyN += yyToken) >= 0
&& yyN < yyTable.length && yyCheckInit.yyCheck[yyN] == yyToken) {
//t if (yydebug != null)
//t yydebug.shift(yyState, yyTable[yyN], yyErrorFlag-1);
yyState = yyTable[yyN]; // shift to yyN
yyVal = yyLex.value();
yyToken = -1;
if (yyErrorFlag > 0) -- yyErrorFlag;
continue yyLoop;
}
if ((yyN = yyRindex[yyState]) != 0 && (yyN += yyToken) >= 0
&& yyN < yyTable.length && yyCheckInit.yyCheck[yyN] == yyToken)
yyN = yyTable[yyN]; // reduce (yyN)
else
switch (yyErrorFlag) {
case 0:
yyErrorString=yyerror("syntax error", yyExpecting(yyState));
//t if (yydebug != null) yydebug.error("syntax error");
case 1: case 2:
yyErrorFlag = 3;
do {
if ((yyN = yySindex[yyStates[yyTop]]) != 0
&& (yyN += yyErrorCode) >= 0 && yyN < yyTable.length
&& yyCheckInit.yyCheck[yyN] == yyErrorCode) {
//t if (yydebug != null)
//t yydebug.shift(yyStates[yyTop], yyTable[yyN], 3);
yyState = yyTable[yyN];
yyVal = yyLex.value();
continue yyLoop;
}
//t if (yydebug != null) yydebug.pop(yyStates[yyTop]);
} while (-- yyTop >= 0);
//t if (yydebug != null) yydebug.reject();
throw new yyException(yyErrorString, yyScanner.token);
case 3:
if (yyToken == 0) {
//t if (yydebug != null) yydebug.reject();
throw new yyException(yyErrorString+"at end-of-file", yyScanner.token);
}
//t if (yydebug != null)
//t yydebug.discard(yyState, yyToken, yyname(yyToken),
//t yyLex.value());
yyToken = -1;
continue yyDiscarded; // leave stack alone
}
}
int yyV = yyTop + 1-yyLen[yyN];
//t if (yydebug != null)
//t yydebug.reduce(yyState, yyStates[yyV-1], yyN, yyRule[yyN], yyLen[yyN]);
yyVal = yyDefault(yyV > yyTop ? null : yyVals[yyV]);
switch (yyN) {
case 1:
2015-01-16 13:48:20 +00:00
// line 247 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((SourceFile)yyVals[0+yyTop]);
}
break;
case 2:
2015-01-16 13:48:20 +00:00
// line 251 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((SourceFile)yyVals[0+yyTop]).addImports(((ImportDeclarations)yyVals[-1+yyTop]));
yyVal=((SourceFile)yyVals[0+yyTop]);
}
break;
case 3:
2015-01-16 13:48:20 +00:00
// line 256 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/* SCJU: Package*/
((SourceFile)yyVals[0+yyTop]).setPackageName(((UsedId)yyVals[-2+yyTop]));
((SourceFile)yyVals[0+yyTop]).addImports(((ImportDeclarations)yyVals[-1+yyTop]));
yyVal=((SourceFile)yyVals[0+yyTop]);
}
break;
case 4:
2015-01-16 13:48:20 +00:00
// line 263 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/* SCJU: Package*/
((SourceFile)yyVals[0+yyTop]).setPackageName(((UsedId)yyVals[-1+yyTop]));
yyVal=((SourceFile)yyVals[0+yyTop]);
}
break;
case 5:
2015-01-16 13:48:20 +00:00
// line 269 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
this.testPair.add(new Pair(((Type)yyVals[-2+yyTop]),((Type)yyVals[-1+yyTop])));
yyVal=((SourceFile)yyVals[0+yyTop]);
}
break;
case 6:
2015-01-16 13:48:20 +00:00
// line 275 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/* SCJU: Package*/
yyVal = ((UsedId)yyVals[-1+yyTop]);
}
break;
case 7:
2015-01-16 13:48:20 +00:00
// line 281 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
ImportDeclarations declarations=new ImportDeclarations();
declarations.addElement(((UsedId)yyVals[0+yyTop]));
yyVal=declarations;
}
break;
case 8:
2015-01-16 13:48:20 +00:00
// line 287 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((ImportDeclarations)yyVals[-1+yyTop]).addElement(((UsedId)yyVals[0+yyTop]));
yyVal=((ImportDeclarations)yyVals[-1+yyTop]);
}
break;
case 9:
2015-01-16 13:48:20 +00:00
// line 293 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((UsedId)yyVals[-1+yyTop]);
}
break;
case 10:
2015-01-16 13:48:20 +00:00
// line 298 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
SourceFile Scfile = new SourceFile();
Scfile.addElement(((AClassOrInterface)yyVals[0+yyTop]));
yyVal=Scfile;
}
break;
case 11:
2015-01-16 13:48:20 +00:00
// line 304 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((SourceFile)yyVals[-1+yyTop]).addElement(((AClassOrInterface)yyVals[0+yyTop]));
yyVal=((SourceFile)yyVals[-1+yyTop]);
}
break;
case 12:
2015-01-16 13:48:20 +00:00
// line 310 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((UsedId)yyVals[0+yyTop]);
}
break;
case 13:
2015-01-16 13:48:20 +00:00
// line 314 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((UsedId)yyVals[0+yyTop]);
}
break;
case 14:
2015-01-16 13:48:20 +00:00
// line 319 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Class)yyVals[0+yyTop]);
}
break;
case 15:
2015-01-16 13:48:20 +00:00
// line 323 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/* SCJU: Interface*/
yyVal=((Interface)yyVals[0+yyTop]);
}
break;
case 16:
2015-01-16 13:48:20 +00:00
// line 330 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((UsedId)yyVals[-2+yyTop]).set_Name(((Token)yyVals[0+yyTop]).getLexem());
((UsedId)yyVals[-2+yyTop]).setOffset(((UsedId)yyVals[-2+yyTop]).getOffset());
yyVal=((UsedId)yyVals[-2+yyTop]);
}
break;
case 17:
2015-01-16 13:48:20 +00:00
// line 337 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((UsedId)yyVals[-2+yyTop]).set_Name(((Token)yyVals[0+yyTop]).getLexem());
((UsedId)yyVals[-2+yyTop]).setOffset(((UsedId)yyVals[-2+yyTop]).getOffset());
yyVal=((UsedId)yyVals[-2+yyTop]);
}
break;
case 18:
2015-01-16 13:48:20 +00:00
// line 343 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((UsedId)yyVals[-2+yyTop]).set_Name("*");
((UsedId)yyVals[-2+yyTop]).setOffset(((UsedId)yyVals[-2+yyTop]).getOffset());
yyVal=((UsedId)yyVals[-2+yyTop]);
}
break;
case 19:
2015-01-16 13:48:20 +00:00
// line 351 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
UsedId UI = new UsedId(((Token)yyVals[0+yyTop]).getOffset());
UI.set_Name( ((Token)yyVals[0+yyTop]).getLexem() );
UI.setOffset(((Token)yyVals[0+yyTop]).getOffset());/*hinzugef<65>gt hoth: 07.04.2006*/
yyVal = UI;
}
break;
case 20:
2015-01-16 13:48:20 +00:00
// line 359 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/* SCJU: Um das hier uebersichtlicher zu halten,*/
/* gibt es einen allumfassenden Konstruktor fuer Class*/
/* Parameter:*/
/* String name, */
/* Modifiers mod,*/
/* ClassBody classbody, */
/* Vector<Type> containedtypes, */
/* UsedId superclass, */
/* Vector<UsedId> SuperInterfaces, */
/* Vector<Type> Parameterliste*/
yyVal = new Class(((ClassAndParameter)yyVals[-1+yyTop]).getName(), null, ((ClassBody)yyVals[0+yyTop]), containedTypes, null, ((ClassAndParameter)yyVals[-1+yyTop]).getParaVector(), ((Token)yyVals[-2+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
this.initContainedTypes();
this.initUsedIdsToCheck();
}
break;
case 21:
2015-01-16 13:48:20 +00:00
// line 376 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal = new Class(((ClassAndParameter)yyVals[-1+yyTop]).getName(), ((Modifiers)yyVals[-3+yyTop]), ((ClassBody)yyVals[0+yyTop]), containedTypes, null, ((ClassAndParameter)yyVals[-1+yyTop]).getParaVector(), ((Token)yyVals[-2+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
this.initContainedTypes();
this.initUsedIdsToCheck();
}
break;
case 22:
2015-01-16 13:48:20 +00:00
// line 382 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal = new Class(((ClassAndParameter)yyVals[-2+yyTop]).getName(), null, ((ClassBody)yyVals[0+yyTop]), containedTypes, ((UsedId)yyVals[-1+yyTop]), null, ((ClassAndParameter)yyVals[-2+yyTop]).getParaVector(), ((Token)yyVals[-3+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
this.initContainedTypes();
this.initUsedIdsToCheck();
}
break;
case 23:
2015-01-16 13:48:20 +00:00
// line 388 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal = new Class(((ClassAndParameter)yyVals[-2+yyTop]).getName(), ((Modifiers)yyVals[-4+yyTop]), ((ClassBody)yyVals[0+yyTop]), containedTypes, ((UsedId)yyVals[-1+yyTop]), null, ((ClassAndParameter)yyVals[-2+yyTop]).getParaVector(), ((Token)yyVals[-3+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
this.initContainedTypes();
this.initUsedIdsToCheck();
}
break;
case 24:
2015-01-16 13:48:20 +00:00
// line 395 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal = new Class(((ClassAndParameter)yyVals[-2+yyTop]).getName(), null, ((ClassBody)yyVals[0+yyTop]), containedTypes, ((InterfaceList)yyVals[-1+yyTop]).getTypeVector(), ((ClassAndParameter)yyVals[-2+yyTop]).getParaVector(), ((Token)yyVals[-3+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
this.initContainedTypes();
this.initUsedIdsToCheck();
}
break;
case 25:
2015-01-16 13:48:20 +00:00
// line 401 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal = new Class(((ClassAndParameter)yyVals[-2+yyTop]).getName(), ((Modifiers)yyVals[-4+yyTop]), ((ClassBody)yyVals[0+yyTop]), containedTypes, ((InterfaceList)yyVals[-1+yyTop]).getTypeVector(), ((ClassAndParameter)yyVals[-2+yyTop]).getParaVector(), ((Token)yyVals[-3+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
this.initContainedTypes();
this.initUsedIdsToCheck();
}
break;
case 26:
2015-01-16 13:48:20 +00:00
// line 407 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal = new Class(((ClassAndParameter)yyVals[-3+yyTop]).getName(), null, ((ClassBody)yyVals[0+yyTop]), containedTypes, ((UsedId)yyVals[-2+yyTop]), ((InterfaceList)yyVals[-1+yyTop]).getTypeVector(), ((ClassAndParameter)yyVals[-3+yyTop]).getParaVector(), ((Token)yyVals[-4+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
this.initContainedTypes();
this.initUsedIdsToCheck();
}
break;
case 27:
2015-01-16 13:48:20 +00:00
// line 413 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal = new Class(((ClassAndParameter)yyVals[-3+yyTop]).getName(), ((Modifiers)yyVals[-5+yyTop]), ((ClassBody)yyVals[0+yyTop]), containedTypes, ((UsedId)yyVals[-2+yyTop]), ((InterfaceList)yyVals[-1+yyTop]).getTypeVector(), ((ClassAndParameter)yyVals[-3+yyTop]).getParaVector(), ((Token)yyVals[-4+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
this.initContainedTypes();
this.initUsedIdsToCheck();
}
break;
case 28:
2015-01-16 13:48:20 +00:00
// line 420 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/* HOTI*/
/* Verbindet den Namen eines Interfaces mit einer optionalen Parameterliste*/
yyVal = new InterfaceAndParameter(((Token)yyVals[0+yyTop]).getLexem());
}
break;
case 29:
2015-01-16 13:48:20 +00:00
// line 426 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal = new InterfaceAndParameter(((Token)yyVals[-3+yyTop]).getLexem(), ((ParaList)yyVals[-1+yyTop]));
}
break;
case 30:
2015-01-16 13:48:20 +00:00
// line 431 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/* SCJU: Hilfskonstrukt, um die Grammatik ueberschaubar zu halten*/
/* Verbindet den Namen einer Klasse mit einer optionalen Parameterliste*/
yyVal = new ClassAndParameter(((Token)yyVals[0+yyTop]).getLexem());
}
break;
case 31:
2015-01-16 13:48:20 +00:00
// line 437 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal = new ClassAndParameter(((Token)yyVals[-3+yyTop]).getLexem(), ((ParaList)yyVals[-1+yyTop]));
}
break;
case 32:
2015-01-16 13:48:20 +00:00
// line 442 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/* SCJU: Interface*/
Interface ic = new Interface(((InterfaceAndParameter)yyVals[-1+yyTop]).getName(), ((Token)yyVals[-2+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
ic.setParaList(((InterfaceAndParameter)yyVals[-1+yyTop]).getParaVector());
ic.setInterfaceBody(((InterfaceBody)yyVals[0+yyTop]));
ic.setContainedTypes(containedTypes);
initContainedTypes();
yyVal = ic;
}
break;
case 33:
2015-01-16 13:48:20 +00:00
// line 452 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Interface ic = new Interface(((InterfaceAndParameter)yyVals[-1+yyTop]).getName(), ((Modifiers)yyVals[-3+yyTop]), ((Token)yyVals[-2+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
ic.setInterfaceBody(((InterfaceBody)yyVals[0+yyTop]));
ic.setParaList(((InterfaceAndParameter)yyVals[-1+yyTop]).getParaVector());
ic.setContainedTypes(containedTypes);
initContainedTypes();
yyVal = ic;
}
break;
case 34:
2015-01-16 13:48:20 +00:00
// line 461 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Interface ic = new Interface(((InterfaceAndParameter)yyVals[-2+yyTop]).getName(), ((Token)yyVals[-3+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
ic.setParaList(((InterfaceAndParameter)yyVals[-2+yyTop]).getParaVector());
2014-09-16 09:31:15 +00:00
/*ic.setSuperInterfaces($3.getVector());*/
2014-07-09 08:52:23 +00:00
ic.setInterfaceBody(((InterfaceBody)yyVals[0+yyTop]));
ic.setContainedTypes(containedTypes);
initContainedTypes();
yyVal = ic;
}
break;
case 35:
2015-01-16 13:48:20 +00:00
// line 471 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Interface ic = new Interface(((InterfaceAndParameter)yyVals[-2+yyTop]).getName(), ((Modifiers)yyVals[-4+yyTop]), ((Token)yyVals[-3+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
ic.setParaList(((InterfaceAndParameter)yyVals[-2+yyTop]).getParaVector());
2014-09-16 09:31:15 +00:00
/*ic.setSuperInterfaces($4.getVector());*/
2014-07-09 08:52:23 +00:00
ic.setInterfaceBody(((InterfaceBody)yyVals[0+yyTop]));
ic.setContainedTypes(containedTypes);
initContainedTypes();
yyVal = ic;
}
break;
case 36:
2015-01-16 13:48:20 +00:00
// line 482 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
ParaList pl = new ParaList();
/* #JB# 05.04.2005 */
/* ########################################################### */
2014-09-08 13:12:47 +00:00
pl.getParalist().addElement(new GenericTypeVar(((Token)yyVals[0+yyTop]).getLexem(),null, ((Token)yyVals[0+yyTop]).getOffset()));
2014-07-09 08:52:23 +00:00
/*pl.getParalist().addElement( new TypePlaceholder($1.getLexem()) );*/
/* ########################################################### */
2014-11-04 12:47:05 +00:00
de.dhbwstuttgart.logger.Logger.getLogger("parser").debug( "IDENTIFIER --> Paralist f<>r " + ((Token)yyVals[0+yyTop]).getLexem() + " TV", Section.PARSER);
2014-07-09 08:52:23 +00:00
yyVal = pl;
}
break;
case 37:
2015-01-16 13:48:20 +00:00
// line 493 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
ParaList pl = new ParaList();
2014-09-16 09:31:15 +00:00
RefType t = new RefType( ((Token)yyVals[-3+yyTop]).getLexem(),null,((Token)yyVals[-3+yyTop]).getOffset() );
2014-07-09 08:52:23 +00:00
t.set_ParaList( ((ParaList)yyVals[-1+yyTop]).get_ParaList() );
pl.getParalist().addElement(t);
2014-11-04 12:47:05 +00:00
de.dhbwstuttgart.logger.Logger.getLogger("parser").debug( "IDENTIFIER '<' paralist '>' --> Paralist f<>r " + ((Token)yyVals[-3+yyTop]).getLexem() + ": RefType", Section.PARSER);
2014-07-09 08:52:23 +00:00
yyVal = pl;
}
break;
case 38:
2015-01-16 13:48:20 +00:00
// line 502 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
ParaList pl = new ParaList();
pl.getParalist().addElement(((WildcardType)yyVals[0+yyTop]));
yyVal = pl;
}
break;
case 39:
2015-01-16 13:48:20 +00:00
// line 508 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/* #JB# 05.04.2005 */
/* ########################################################### */
2014-09-08 13:12:47 +00:00
((ParaList)yyVals[-2+yyTop]).getParalist().addElement(new GenericTypeVar(((Token)yyVals[0+yyTop]).getLexem(), null,((Token)yyVals[0+yyTop]).getOffset()));
2014-07-09 08:52:23 +00:00
/*$1.getParalist().addElement(new TypePlaceholder($3.getLexem()));*/
/* ########################################################### */
2014-11-04 12:47:05 +00:00
de.dhbwstuttgart.logger.Logger.getLogger("parser").debug( "paralist ',' IDENTIFIER --> Paralist f<>r " + ((Token)yyVals[0+yyTop]).getLexem() + ": TV", Section.PARSER);
de.dhbwstuttgart.logger.Logger.getLogger("parser").debug( "paralist: " + ((ParaList)yyVals[-2+yyTop]).getParalist(), Section.PARSER);
2014-07-09 08:52:23 +00:00
yyVal=((ParaList)yyVals[-2+yyTop]);
}
break;
case 40:
2015-01-16 13:48:20 +00:00
// line 521 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-09-16 09:31:15 +00:00
RefType t = new RefType( ((Token)yyVals[-3+yyTop]).getLexem(),null ,((Token)yyVals[-3+yyTop]).getOffset() );
2014-07-09 08:52:23 +00:00
t.set_ParaList( ((ParaList)yyVals[-1+yyTop]).get_ParaList() );
((ParaList)yyVals[-5+yyTop]).getParalist().addElement(t);
2014-11-04 12:47:05 +00:00
de.dhbwstuttgart.logger.Logger.getLogger("parser").debug( "paralist ',' IDENTIFIER '<' paralist '>' --> Paralist f<>r " + ((Token)yyVals[-3+yyTop]).getLexem() + ": RefType", Section.PARSER);
2014-07-09 08:52:23 +00:00
yyVal=((ParaList)yyVals[-5+yyTop]);
}
break;
case 41:
2015-01-16 13:48:20 +00:00
// line 529 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((ParaList)yyVals[-2+yyTop]).getParalist().addElement(((WildcardType)yyVals[0+yyTop]));
yyVal=((ParaList)yyVals[-2+yyTop]);
}
break;
case 42:
2015-01-16 13:48:20 +00:00
// line 535 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/*Luar 29.11.06 Offset auf -1, da keine Angabe vorhanden*/
2014-09-16 09:31:15 +00:00
WildcardType wc = new WildcardType(null,-1);
2014-07-09 08:52:23 +00:00
yyVal = wc;
}
break;
case 43:
2015-01-16 13:48:20 +00:00
// line 541 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
ExtendsWildcardType ewc = new ExtendsWildcardType(((Token)yyVals[-1+yyTop]).getOffset(),((RefType)yyVals[0+yyTop]));
yyVal = ewc;
}
break;
case 44:
2015-01-16 13:48:20 +00:00
// line 546 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
SuperWildcardType swc = new SuperWildcardType(((Token)yyVals[-1+yyTop]).getOffset(),((RefType)yyVals[0+yyTop]));
yyVal = swc;
}
break;
case 45:
2015-01-16 13:48:20 +00:00
// line 552 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
ClassBody CB = new ClassBody();
yyVal = CB;
}
break;
case 46:
2015-01-16 13:48:20 +00:00
// line 558 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal = ((ClassBody)yyVals[-1+yyTop]);
}
break;
case 47:
2015-01-16 13:48:20 +00:00
// line 563 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Modifiers Mod = new Modifiers();
Mod.addModifier(((Modifier)yyVals[0+yyTop]));
yyVal = Mod;
}
break;
case 48:
2015-01-16 13:48:20 +00:00
// line 569 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((Modifiers)yyVals[-1+yyTop]).addModifier(((Modifier)yyVals[0+yyTop]));
yyVal = ((Modifiers)yyVals[-1+yyTop]);
}
break;
case 49:
2015-01-16 13:48:20 +00:00
// line 575 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal = ((UsedId)yyVals[0+yyTop]);
}
break;
case 50:
2015-01-16 13:48:20 +00:00
// line 580 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/* SCJU: Interface*/
InterfaceList il = new InterfaceList();
il.addInterface(((UsedId)yyVals[0+yyTop]));
yyVal = il;
}
break;
case 51:
2015-01-16 13:48:20 +00:00
// line 587 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((InterfaceList)yyVals[-2+yyTop]).addInterface(((UsedId)yyVals[0+yyTop]));
yyVal = ((InterfaceList)yyVals[-2+yyTop]);
}
break;
case 52:
2015-01-16 13:48:20 +00:00
// line 593 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/* SCJU: Interface*/
yyVal = new InterfaceBody();
}
break;
case 53:
2015-01-16 13:48:20 +00:00
// line 598 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal = ((InterfaceBody)yyVals[-1+yyTop]);
}
break;
case 54:
2015-01-16 13:48:20 +00:00
// line 605 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/* SCJU: Interface*/
InterfaceList il = new InterfaceList();
il.addInterface(((UsedId)yyVals[0+yyTop]));
yyVal = il;
}
break;
case 55:
2015-01-16 13:48:20 +00:00
// line 612 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((InterfaceList)yyVals[-2+yyTop]).addInterface(((UsedId)yyVals[0+yyTop]));
yyVal = ((InterfaceList)yyVals[-2+yyTop]);
}
break;
case 56:
2015-01-16 13:48:20 +00:00
// line 619 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
ClassBody CB = new ClassBody();
CB.addField( ((Field)yyVals[0+yyTop]) );
yyVal=CB;
}
break;
case 57:
2015-01-16 13:48:20 +00:00
// line 625 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((ClassBody)yyVals[-1+yyTop]).addField(((Field)yyVals[0+yyTop]));
yyVal = ((ClassBody)yyVals[-1+yyTop]);
}
break;
case 58:
2015-01-16 13:48:20 +00:00
// line 632 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Public Pub = new Public();
yyVal=Pub;
}
break;
case 59:
2015-01-16 13:48:20 +00:00
// line 637 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Protected Pro = new Protected();
yyVal=Pro;
}
break;
case 60:
2015-01-16 13:48:20 +00:00
// line 642 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Private Pri = new Private();
yyVal=Pri;
}
break;
case 61:
2015-01-16 13:48:20 +00:00
// line 647 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Static Sta = new Static();
yyVal=Sta;
}
break;
case 62:
2015-01-16 13:48:20 +00:00
// line 652 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Abstract Abs = new Abstract();
yyVal=Abs;
}
break;
case 63:
2015-01-16 13:48:20 +00:00
// line 657 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{ Final fin = new Final();
yyVal = fin;
}
break;
case 64:
2015-01-16 13:48:20 +00:00
// line 663 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/*PL 05-07-30 eingefuegt containedTypes ANFANG*/
2014-12-05 16:11:22 +00:00
RefType RT = new RefType(((UsedId)yyVals[0+yyTop]).get_Name_1Element(),null,-1);
2014-07-09 08:52:23 +00:00
/*RT.set_UsedId($1);*/
/*RT.setName(RT.get_UsedId().get_Name_1Element());*/
RT.set_ParaList(((UsedId)yyVals[0+yyTop]).get_RealParaList());
2015-01-16 13:48:20 +00:00
/*RT.setName($1.get_Name_1Element());*/
2014-07-09 08:52:23 +00:00
containedTypes.addElement(RT);
/*PL 05-07-30 eingefuegt containedTypes ENDE*/
yyVal = ((UsedId)yyVals[0+yyTop]);
}
break;
case 65:
2015-01-16 13:48:20 +00:00
// line 678 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/* SCJU: Interface*/
InterfaceBody ib = new InterfaceBody();
ib.addElement(((Field)yyVals[0+yyTop]));
yyVal = ib;
}
break;
case 66:
2015-01-16 13:48:20 +00:00
// line 685 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((InterfaceBody)yyVals[-1+yyTop]).addElement(((Field)yyVals[0+yyTop]));
yyVal = ((InterfaceBody)yyVals[-1+yyTop]);
}
break;
case 67:
2015-01-16 13:48:20 +00:00
// line 691 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/* SCJU: Interfaces*/
yyVal = ((UsedId)yyVals[0+yyTop]);
}
break;
case 68:
2015-01-16 13:48:20 +00:00
// line 697 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Field)yyVals[0+yyTop]);
}
break;
case 69:
2015-01-16 13:48:20 +00:00
// line 702 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Method)yyVals[0+yyTop]);
}
break;
case 70:
2015-01-16 13:48:20 +00:00
// line 706 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Field)yyVals[0+yyTop]);
}
break;
case 71:
2015-01-16 13:48:20 +00:00
// line 712 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
if (((Vector)yyVals[0+yyTop]) != null) {
/*$1.set_ParaList($2.get_ParaList());*/
((UsedId)yyVals[-1+yyTop]).set_ParaList(((Vector)yyVals[0+yyTop]));/*<2A>nderung von Andreas Stadelmeier. Type statt GenericVarType*/
/* otth: originale (also diese) Parameterliste retten */
/*((UsedId)$1).vParaOrg = new Vector<Type>( $2.get_ParaList() );*/
}
yyVal=((UsedId)yyVals[-1+yyTop]);
}
break;
case 72:
2015-01-16 13:48:20 +00:00
// line 723 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Vector<Type> tl = new Vector<Type>();
tl.add(((Type)yyVals[0+yyTop]));
yyVal = tl;
}
break;
case 73:
2015-01-16 13:48:20 +00:00
// line 729 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((Vector)yyVals[-2+yyTop]).add(((Type)yyVals[0+yyTop]));
yyVal=((Vector)yyVals[-2+yyTop]);
}
break;
case 74:
2015-01-16 13:48:20 +00:00
// line 734 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-08-07 15:13:55 +00:00
{
((Vector)yyVals[-2+yyTop]).add(((WildcardType)yyVals[0+yyTop]));
yyVal=((Vector)yyVals[-2+yyTop]);
}
2014-07-09 08:52:23 +00:00
break;
case 75:
2015-01-16 13:48:20 +00:00
// line 739 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-08-07 15:13:55 +00:00
{
Vector<Type> tl = new Vector<Type>();
tl.add(((WildcardType)yyVals[0+yyTop]));
yyVal = tl;
}
break;
case 76:
2015-01-16 13:48:20 +00:00
// line 747 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-08-07 15:13:55 +00:00
{ yyVal = null; }
break;
case 77:
2015-01-16 13:48:20 +00:00
// line 749 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal = ((Vector)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 78:
2015-01-16 13:48:20 +00:00
// line 754 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/* SCJU: Interfaces, Spezialform Konstantendef.*/
yyVal = ((Constant)yyVals[0+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 79:
2015-01-16 13:48:20 +00:00
// line 759 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal = ((Method)yyVals[0+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 80:
2015-01-16 13:48:20 +00:00
// line 764 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Field)yyVals[0+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 81:
2015-01-16 13:48:20 +00:00
// line 768 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Method)yyVals[0+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 82:
2015-01-16 13:48:20 +00:00
// line 773 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Method STAT = new Method(((Token)yyVals[-1+yyTop]).getOffset());
DeclId DST = new DeclId();
DST.set_Name(((Token)yyVals[-1+yyTop]).getLexem());
STAT.set_DeclId(DST);
Static ST = new Static();
Modifiers MOD = new Modifiers();
MOD.addModifier(ST);
STAT.set_Modifiers(MOD);
STAT.set_Block(((Block)yyVals[0+yyTop]));
yyVal=STAT;
}
break;
2014-08-07 15:13:55 +00:00
case 83:
2015-01-16 13:48:20 +00:00
// line 787 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((Constructor)yyVals[-1+yyTop]).set_Block(((Block)yyVals[0+yyTop]));
yyVal = ((Constructor)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 84:
2015-01-16 13:48:20 +00:00
// line 792 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((Constructor)yyVals[-1+yyTop]).set_Block(((Block)yyVals[0+yyTop]));
((Constructor)yyVals[-1+yyTop]).set_Modifiers(((Modifiers)yyVals[-2+yyTop]));
yyVal = ((Constructor)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 85:
2015-01-16 13:48:20 +00:00
// line 799 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/* SCJU: Interface*/
Constant c = new Constant(((Token)yyVals[-3+yyTop]).getLexem(), ((Modifiers)yyVals[-5+yyTop]));
c.setType(((Type)yyVals[-4+yyTop]));
c.setValue(((Expr)yyVals[-1+yyTop]));
yyVal = c;
}
break;
2014-08-07 15:13:55 +00:00
case 86:
2015-01-16 13:48:20 +00:00
// line 808 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/* SCJU: Interface*/
yyVal = ((Method)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 87:
2015-01-16 13:48:20 +00:00
// line 833 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
FieldDeclaration ret = new FieldDeclaration(((DeclId)yyVals[-2+yyTop]).getOffset());
ret.set_DeclId(((DeclId)yyVals[-2+yyTop]));
ret.setWert(((Expr)yyVals[0+yyTop]));
yyVal=ret;
}
break;
2014-08-07 15:13:55 +00:00
case 88:
2015-01-16 13:48:20 +00:00
// line 840 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-07-09 13:07:40 +00:00
FieldDeclaration ret = new FieldDeclaration(((DeclId)yyVals[0+yyTop]).getOffset());
ret.set_DeclId(((DeclId)yyVals[0+yyTop]));
yyVal=ret;
}
break;
2014-08-07 15:13:55 +00:00
case 89:
2015-01-16 13:48:20 +00:00
// line 847 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 13:07:40 +00:00
{
GenericDeclarationList ret = new GenericDeclarationList(((GenericVarDeclarationList)yyVals[-1+yyTop]).getElements(),((GenericVarDeclarationList)yyVals[-1+yyTop]).getEndOffset());
2014-07-09 08:52:23 +00:00
yyVal = ret;
}
break;
2014-08-07 15:13:55 +00:00
case 90:
2015-01-16 13:48:20 +00:00
// line 854 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((FieldDeclaration)yyVals[-1+yyTop]).setType(((Type)yyVals[-2+yyTop]));
2014-07-09 08:52:23 +00:00
yyVal=((FieldDeclaration)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 91:
2015-01-16 13:48:20 +00:00
// line 859 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((FieldDeclaration)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 92:
2015-01-16 13:48:20 +00:00
// line 863 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{/*angef<65>gt von Andreas Stadelmeier*/
((FieldDeclaration)yyVals[-1+yyTop]).setType(((Type)yyVals[-2+yyTop]));
((FieldDeclaration)yyVals[-1+yyTop]).setGenericParameter(((GenericDeclarationList)yyVals[-3+yyTop]));
yyVal=((FieldDeclaration)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 93:
2015-01-16 13:48:20 +00:00
// line 870 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((FieldDeclaration)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 94:
2015-01-16 13:48:20 +00:00
// line 875 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-11-04 12:47:05 +00:00
de.dhbwstuttgart.logger.Logger.getLogger("parser").debug("T->Parser->fielddeclaration ...: type " + ((Type)yyVals[-2+yyTop]), Section.PARSER);
2014-07-09 08:52:23 +00:00
((FieldDeclaration)yyVals[-1+yyTop]).setType(((Type)yyVals[-2+yyTop]));
yyVal = ((FieldDeclaration)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 95:
2015-01-16 13:48:20 +00:00
// line 882 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((FieldDeclaration)yyVals[-1+yyTop]).setType(((Type)yyVals[-2+yyTop]));
for(int i=0;i<(((FieldDeclaration)yyVals[-1+yyTop]).getDeclIdVector().size());i++)
{
((FieldDeclaration)yyVals[-1+yyTop]).getDeclIdVector().elementAt(i).modifiers=((Modifiers)yyVals[-3+yyTop]);
}
yyVal = ((FieldDeclaration)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 96:
2015-01-16 13:48:20 +00:00
// line 892 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((Method)yyVals[-1+yyTop]).set_Block(((Block)yyVals[0+yyTop]));
yyVal=((Method)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 97:
2015-01-16 13:48:20 +00:00
// line 899 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Block Bl = new Block();
yyVal=Bl;
}
break;
2014-08-07 15:13:55 +00:00
case 98:
2015-01-16 13:48:20 +00:00
// line 905 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Block)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 99:
2015-01-16 13:48:20 +00:00
// line 910 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Constructor CON = new Constructor(null); /*TODO: Der Parser kann sowieso nicht zwischen einem Konstruktor und einer Methode unterscheiden. Das hier kann wegfallen...*/
DeclId DIDCon = new DeclId();
DIDCon.set_Name(((UsedId)yyVals[-2+yyTop]).get_Name_1Element());
CON.set_DeclId(DIDCon);
yyVal=CON;
}
break;
2014-08-07 15:13:55 +00:00
case 100:
2015-01-16 13:48:20 +00:00
// line 918 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Constructor CONpara = new Constructor(null);
DeclId DIconpara = new DeclId();
DIconpara.set_Name(((UsedId)yyVals[-3+yyTop]).get_Name_1Element());
CONpara.set_DeclId(DIconpara);
CONpara.setParameterList(((ParameterList)yyVals[-1+yyTop]));
yyVal=CONpara;
}
break;
2014-08-07 15:13:55 +00:00
case 101:
2015-01-16 13:48:20 +00:00
// line 928 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Block CBL = new Block();
yyVal=CBL;
}
break;
2014-08-07 15:13:55 +00:00
case 102:
2015-01-16 13:48:20 +00:00
// line 933 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Block CBLexpl = new Block();
CBLexpl.set_Statement(((Statement)yyVals[-1+yyTop]));
yyVal=CBLexpl;
}
break;
2014-08-07 15:13:55 +00:00
case 103:
2015-01-16 13:48:20 +00:00
// line 939 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Block)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 104:
2015-01-16 13:48:20 +00:00
// line 943 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Block CBes = new Block();
CBes.set_Statement(((Statement)yyVals[-2+yyTop]));
for(int j=0;j<((Block)yyVals[-1+yyTop]).statements.size();j++)
{
CBes.set_Statement((Statement)((Block)yyVals[-1+yyTop]).statements.elementAt(j));
}
yyVal=CBes;
}
break;
2014-08-07 15:13:55 +00:00
case 105:
2015-01-16 13:48:20 +00:00
// line 954 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
ExceptionList EL = new ExceptionList();
EL.set_addElem(((RefType)yyVals[0+yyTop]));
yyVal=EL;
}
break;
2014-08-07 15:13:55 +00:00
case 106:
2015-01-16 13:48:20 +00:00
// line 961 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal = ((GenericTypeVar)yyVals[0+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 107:
2015-01-16 13:48:20 +00:00
// line 966 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
ParaList p = new ParaList();
p.add_ParaList(((GenericTypeVar)yyVals[0+yyTop]));
yyVal=p;
}
break;
2014-08-07 15:13:55 +00:00
case 108:
2015-01-16 13:48:20 +00:00
// line 972 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((ParaList)yyVals[-2+yyTop]).add_ParaList(((GenericTypeVar)yyVals[0+yyTop]));
yyVal=((ParaList)yyVals[-2+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 109:
2015-01-16 13:48:20 +00:00
// line 979 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-09-08 13:12:47 +00:00
yyVal=new GenericTypeVar(((Token)yyVals[0+yyTop]).getLexem(),null,((Token)yyVals[0+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
}
break;
2014-08-07 15:13:55 +00:00
case 110:
2015-01-16 13:48:20 +00:00
// line 983 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-09-08 13:12:47 +00:00
BoundedGenericTypeVar gtv=new BoundedGenericTypeVar(((Token)yyVals[-2+yyTop]).getLexem(), ((BoundedClassIdentifierList)yyVals[0+yyTop]),null, ((Token)yyVals[-2+yyTop]).getOffset() ,((BoundedClassIdentifierList)yyVals[0+yyTop]).getEndOffset());
2014-07-09 08:52:23 +00:00
/*gtv.setBounds($3);*/
yyVal=gtv;
}
break;
2014-08-07 15:13:55 +00:00
case 111:
2015-01-16 13:48:20 +00:00
// line 990 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Vector<Type> vec=new Vector<Type>();
vec.addElement(((RefType)yyVals[0+yyTop]));
containedTypes.addElement(((RefType)yyVals[0+yyTop]));
2014-09-02 16:49:19 +00:00
yyVal=new BoundedClassIdentifierList(vec, ((RefType)yyVals[0+yyTop]).getOffset()+((RefType)yyVals[0+yyTop]).getName().toString().length());
2014-07-09 08:52:23 +00:00
}
break;
2014-08-07 15:13:55 +00:00
case 112:
2015-01-16 13:48:20 +00:00
// line 997 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((BoundedClassIdentifierList)yyVals[-2+yyTop]).addElement(((RefType)yyVals[0+yyTop]));
((BoundedClassIdentifierList)yyVals[-2+yyTop]).addOffsetOff(((RefType)yyVals[0+yyTop]));
containedTypes.addElement(((RefType)yyVals[0+yyTop]));
yyVal=((BoundedClassIdentifierList)yyVals[-2+yyTop]);
2014-07-09 08:52:23 +00:00
}
break;
2014-08-07 15:13:55 +00:00
case 113:
2015-01-16 13:48:20 +00:00
// line 1005 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-07-09 13:07:40 +00:00
GenericVarDeclarationList vec=new GenericVarDeclarationList();
2014-07-09 08:52:23 +00:00
vec.addElement(((GenericTypeVar)yyVals[0+yyTop]));
yyVal=vec;
}
break;
2014-08-07 15:13:55 +00:00
case 114:
2015-01-16 13:48:20 +00:00
// line 1011 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-07-09 13:07:40 +00:00
((GenericVarDeclarationList)yyVals[-2+yyTop]).addElement(((GenericTypeVar)yyVals[0+yyTop]));
yyVal=((GenericVarDeclarationList)yyVals[-2+yyTop]);
2014-07-09 08:52:23 +00:00
}
break;
2014-08-07 15:13:55 +00:00
case 115:
2015-01-16 13:48:20 +00:00
// line 1019 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((Method)yyVals[0+yyTop]).setType(((Type)yyVals[-1+yyTop]));
((Method)yyVals[0+yyTop]).setGenericParameter(((GenericDeclarationList)yyVals[-2+yyTop]));
yyVal=((Method)yyVals[0+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 116:
2015-01-16 13:48:20 +00:00
// line 1025 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((Method)yyVals[0+yyTop]).setType(((Type)yyVals[-1+yyTop]));
yyVal=((Method)yyVals[0+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 117:
2015-01-16 13:48:20 +00:00
// line 1030 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((Method)yyVals[0+yyTop]).set_Modifiers(((Modifiers)yyVals[-2+yyTop]));
((Method)yyVals[0+yyTop]).setType(((Type)yyVals[-1+yyTop]));
yyVal=((Method)yyVals[0+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 118:
2015-01-16 13:48:20 +00:00
// line 1036 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((Method)yyVals[0+yyTop]).set_Modifiers(((Modifiers)yyVals[-3+yyTop]));
((Method)yyVals[0+yyTop]).setGenericParameter(((GenericDeclarationList)yyVals[-2+yyTop]));
((Method)yyVals[0+yyTop]).setType(((Type)yyVals[-1+yyTop]));
yyVal=((Method)yyVals[0+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 119:
2015-01-16 13:48:20 +00:00
// line 1043 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((Method)yyVals[-1+yyTop]).setType(((Type)yyVals[-2+yyTop]));
((Method)yyVals[-1+yyTop]).set_ExceptionList(((ExceptionList)yyVals[0+yyTop]));
yyVal=((Method)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 120:
2015-01-16 13:48:20 +00:00
// line 1049 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((Method)yyVals[-1+yyTop]).setGenericParameter(((GenericDeclarationList)yyVals[-3+yyTop]));
((Method)yyVals[-1+yyTop]).setType(((Type)yyVals[-2+yyTop]));
((Method)yyVals[-1+yyTop]).set_ExceptionList(((ExceptionList)yyVals[0+yyTop]));
yyVal=((Method)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 121:
2015-01-16 13:48:20 +00:00
// line 1056 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((Method)yyVals[-1+yyTop]).set_Modifiers(((Modifiers)yyVals[-3+yyTop]));
((Method)yyVals[-1+yyTop]).setType(((Type)yyVals[-2+yyTop]));
((Method)yyVals[-1+yyTop]).set_ExceptionList(((ExceptionList)yyVals[0+yyTop]));
yyVal=((Method)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 122:
2015-01-16 13:48:20 +00:00
// line 1063 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((Method)yyVals[-1+yyTop]).set_Modifiers(((Modifiers)yyVals[-4+yyTop]));
((Method)yyVals[-1+yyTop]).setGenericParameter(((GenericDeclarationList)yyVals[-3+yyTop]));
((Method)yyVals[-1+yyTop]).setType(((Type)yyVals[-2+yyTop]));
((Method)yyVals[-1+yyTop]).set_ExceptionList(((ExceptionList)yyVals[0+yyTop]));
yyVal=((Method)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 123:
2015-01-16 13:48:20 +00:00
// line 1071 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-09-16 09:31:15 +00:00
Void Voit = new Void(((Method)yyVals[0+yyTop]),((Token)yyVals[-1+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
((Method)yyVals[0+yyTop]).setType(Voit);
yyVal=((Method)yyVals[0+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 124:
2015-01-16 13:48:20 +00:00
// line 1077 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-09-16 09:31:15 +00:00
Void voit = new Void(((Method)yyVals[0+yyTop]),((Token)yyVals[-1+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
((Method)yyVals[0+yyTop]).set_Modifiers(((Modifiers)yyVals[-2+yyTop]));
((Method)yyVals[0+yyTop]).setType(voit);
yyVal=((Method)yyVals[0+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 125:
2015-01-16 13:48:20 +00:00
// line 1084 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-09-16 09:31:15 +00:00
Void voyt = new Void(((Method)yyVals[-1+yyTop]),((Token)yyVals[-2+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
((Method)yyVals[-1+yyTop]).setType(voyt);
((Method)yyVals[-1+yyTop]).set_ExceptionList(((ExceptionList)yyVals[0+yyTop]));
yyVal=((Method)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 126:
2015-01-16 13:48:20 +00:00
// line 1091 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-09-16 09:31:15 +00:00
Void voyd = new Void(((Method)yyVals[-1+yyTop]),((Token)yyVals[-2+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
((Method)yyVals[-1+yyTop]).set_Modifiers(((Modifiers)yyVals[-3+yyTop]));
((Method)yyVals[-1+yyTop]).setType(voyd);
((Method)yyVals[-1+yyTop]).set_ExceptionList(((ExceptionList)yyVals[0+yyTop]));
yyVal=((Method)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 127:
2015-01-16 13:48:20 +00:00
// line 1099 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-09-16 09:31:15 +00:00
Void Voit = new Void(((Method)yyVals[0+yyTop]),((Token)yyVals[-1+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
((Method)yyVals[0+yyTop]).setType(Voit);
((Method)yyVals[0+yyTop]).setGenericParameter(((GenericDeclarationList)yyVals[-2+yyTop]));
yyVal=((Method)yyVals[0+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 128:
2015-01-16 13:48:20 +00:00
// line 1106 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-09-16 09:31:15 +00:00
Void voit = new Void(((Method)yyVals[0+yyTop]),((Token)yyVals[-1+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
((Method)yyVals[0+yyTop]).set_Modifiers(((Modifiers)yyVals[-3+yyTop]));
((Method)yyVals[0+yyTop]).setType(voit);
((Method)yyVals[0+yyTop]).setGenericParameter(((GenericDeclarationList)yyVals[-2+yyTop]));
yyVal=((Method)yyVals[0+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 129:
2015-01-16 13:48:20 +00:00
// line 1114 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-09-16 09:31:15 +00:00
Void voyt = new Void(((Method)yyVals[-1+yyTop]),((Token)yyVals[-2+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
((Method)yyVals[-1+yyTop]).setType(voyt);
((Method)yyVals[-1+yyTop]).set_ExceptionList(((ExceptionList)yyVals[0+yyTop]));
((Method)yyVals[-1+yyTop]).setGenericParameter(((GenericDeclarationList)yyVals[-3+yyTop]));
yyVal=((Method)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 130:
2015-01-16 13:48:20 +00:00
// line 1122 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-09-16 09:31:15 +00:00
Void voyd = new Void(((Method)yyVals[-1+yyTop]),((Token)yyVals[-2+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
((Method)yyVals[-1+yyTop]).set_Modifiers(((Modifiers)yyVals[-4+yyTop]));
((Method)yyVals[-1+yyTop]).setType(voyd);
((Method)yyVals[-1+yyTop]).set_ExceptionList(((ExceptionList)yyVals[0+yyTop]));
((Method)yyVals[-1+yyTop]).setGenericParameter(((GenericDeclarationList)yyVals[-3+yyTop]));
yyVal=((Method)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 131:
2015-01-16 13:48:20 +00:00
// line 1132 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/*auskommentiert von Andreas Stadelmeier (a10023) $1.setType(TypePlaceholder.fresh()); */
yyVal=((Method)yyVals[0+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 132:
2015-01-16 13:48:20 +00:00
// line 1137 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/*auskommentiert von Andreas Stadelmeier (a10023) $4.setType(TypePlaceholder.fresh());*/
((Method)yyVals[0+yyTop]).setGenericParameter(((GenericDeclarationList)yyVals[-1+yyTop]));
yyVal=((Method)yyVals[0+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 133:
2015-01-16 13:48:20 +00:00
// line 1144 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((Method)yyVals[0+yyTop]).set_Modifiers(((Modifiers)yyVals[-1+yyTop]));
/*auskommentiert von Andreas Stadelmeier (a10023) $2.setType(TypePlaceholder.fresh());*/
yyVal=((Method)yyVals[0+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 134:
2015-01-16 13:48:20 +00:00
// line 1150 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/*auskommentiert von Andreas Stadelmeier (a10023) $1.setType(TypePlaceholder.fresh());*/
((Method)yyVals[-1+yyTop]).set_ExceptionList(((ExceptionList)yyVals[0+yyTop]));
yyVal=((Method)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 135:
2015-01-16 13:48:20 +00:00
// line 1156 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((Method)yyVals[-1+yyTop]).set_Modifiers(((Modifiers)yyVals[-2+yyTop]));
/*auskommentiert von Andreas Stadelmeier (a10023) $2.setType(TypePlaceholder.fresh());*/
((Method)yyVals[-1+yyTop]).set_ExceptionList(((ExceptionList)yyVals[0+yyTop]));
yyVal=((Method)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 136:
2015-01-16 13:48:20 +00:00
// line 1165 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((BaseType)yyVals[0+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 137:
2015-01-16 13:48:20 +00:00
// line 1169 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((BaseType)yyVals[-2+yyTop]).setArray(true);
}
break;
2014-08-07 15:13:55 +00:00
case 138:
2015-01-16 13:48:20 +00:00
// line 1173 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((RefType)yyVals[0+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 139:
2015-01-16 13:48:20 +00:00
// line 1177 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((RefType)yyVals[-2+yyTop]).setArray(true);
}
break;
2014-08-07 15:13:55 +00:00
case 140:
2015-01-16 13:48:20 +00:00
// line 1181 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
FieldDeclaration IVD = new FieldDeclaration(((DeclId)yyVals[0+yyTop]).getOffset());
IVD.getDeclIdVector().addElement( ((DeclId)yyVals[0+yyTop]) );
IVD.setOffset(((DeclId)yyVals[0+yyTop]).getOffset());
yyVal = IVD;
}
break;
2014-08-07 15:13:55 +00:00
case 141:
2015-01-16 13:48:20 +00:00
// line 1188 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((FieldDeclaration)yyVals[-2+yyTop]).getDeclIdVector().addElement(((DeclId)yyVals[0+yyTop]));
yyVal=((FieldDeclaration)yyVals[-2+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 142:
2015-01-16 13:48:20 +00:00
// line 1194 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Block)yyVals[0+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 143:
2015-01-16 13:48:20 +00:00
// line 1199 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Block Blstat = new Block();
Blstat.set_Statement(((Statement)yyVals[0+yyTop]));
yyVal=Blstat;
}
break;
2014-08-07 15:13:55 +00:00
case 144:
2015-01-16 13:48:20 +00:00
// line 1206 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((Block)yyVals[-1+yyTop]).set_Statement(((Statement)yyVals[0+yyTop]));
yyVal=((Block)yyVals[-1+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 145:
2015-01-16 13:48:20 +00:00
// line 1212 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
ParameterList PL = new ParameterList();
PL.set_AddParameter(((FormalParameter)yyVals[0+yyTop]));
yyVal = PL;
}
break;
2014-08-07 15:13:55 +00:00
case 146:
2015-01-16 13:48:20 +00:00
// line 1218 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((ParameterList)yyVals[-2+yyTop]).set_AddParameter(((FormalParameter)yyVals[0+yyTop]));
yyVal = ((ParameterList)yyVals[-2+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 147:
2015-01-16 13:48:20 +00:00
// line 1224 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2015-02-26 14:50:23 +00:00
ThisCall THCON = new ThisCall(((Token)yyVals[-3+yyTop]).getOffset(),((Token)yyVals[-3+yyTop]).getLexem().length());
2014-07-09 08:52:23 +00:00
yyVal=THCON;
}
break;
2014-08-07 15:13:55 +00:00
case 148:
2015-01-16 13:48:20 +00:00
// line 1229 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2015-02-26 14:50:23 +00:00
ThisCall THCONargl = new ThisCall(((Token)yyVals[-4+yyTop]).getOffset(),((Token)yyVals[-4+yyTop]).getLexem().length());
2014-07-09 08:52:23 +00:00
THCONargl.set_ArgumentList(((ArgumentList)yyVals[-2+yyTop]));
yyVal=THCONargl;
}
break;
2014-08-07 15:13:55 +00:00
case 149:
2015-01-16 13:48:20 +00:00
// line 1238 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2015-01-16 13:48:20 +00:00
/*RefType RT = new RefType(RT.get_UsedId().get_Name_1Element(),null,-1);*/
RefType RT = new RefType(((UsedId)yyVals[0+yyTop]).get_Name_1Element(),null,-1);
/*RT.set_UsedId($1);*/
/*RT.setName(RT.get_UsedId().get_Name_1Element());*/
2014-07-09 08:52:23 +00:00
yyVal=RT;
}
break;
2014-08-07 15:13:55 +00:00
case 150:
2014-11-04 12:47:05 +00:00
// line 1246 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((RefType)yyVals[-2+yyTop]).set_UsedId(((UsedId)yyVals[0+yyTop]));
((RefType)yyVals[-2+yyTop]).setName(((RefType)yyVals[-2+yyTop]).get_UsedId().get_Name_1Element());
yyVal=((RefType)yyVals[-2+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 151:
2014-11-04 12:47:05 +00:00
// line 1253 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Method met = new Method(((Token)yyVals[-2+yyTop]).getOffset());
/* #JB# 10.04.2005 */
/* ########################################################### */
met.setLineNumber(((Token)yyVals[-2+yyTop]).getLineNumber());
met.setOffset(((Token)yyVals[-2+yyTop]).getOffset());/*hinzugef<65>gt hoth: 07.04.2006*/
/* ########################################################### */
DeclId DImethod = new DeclId();
DImethod.set_Name(((Token)yyVals[-2+yyTop]).getLexem());
met.set_DeclId(DImethod);
yyVal = met;
}
break;
2014-08-07 15:13:55 +00:00
case 152:
2014-11-04 12:47:05 +00:00
// line 1266 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Method met_para = new Method(((Token)yyVals[-3+yyTop]).getOffset());
/* #JB# 10.04.2005 */
/* ########################################################### */
met_para.setLineNumber(((Token)yyVals[-3+yyTop]).getLineNumber());
met_para.setOffset(((Token)yyVals[-3+yyTop]).getOffset());/*hinzugef<65>gt hoth: 07.04.2006*/
/* ########################################################### */
DeclId Dimet_para = new DeclId();
Dimet_para.set_Name(((Token)yyVals[-3+yyTop]).getLexem());
met_para.set_DeclId(Dimet_para);
met_para.setParameterList(((ParameterList)yyVals[-1+yyTop]));
yyVal = met_para;
}
break;
2014-08-07 15:13:55 +00:00
case 153:
2014-11-04 12:47:05 +00:00
// line 1281 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-09-16 09:31:15 +00:00
BooleanType BT = new BooleanType(null);
2014-07-09 08:52:23 +00:00
/* #JB# 05.04.2005 */
/* ########################################################### */
/*BT.setName($1.getLexem());*/
/* ########################################################### */
yyVal=BT;
}
break;
2014-08-07 15:13:55 +00:00
case 154:
2014-11-04 12:47:05 +00:00
// line 1290 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((BaseType)yyVals[0+yyTop]);
}
break;
2014-08-07 15:13:55 +00:00
case 155:
2015-01-16 13:48:20 +00:00
// line 1296 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-11-04 12:47:05 +00:00
de.dhbwstuttgart.logger.Logger.getLogger("parser").debug("T->Parser->referenctype: " + ((UsedId)yyVals[0+yyTop]), Section.PARSER);
2015-01-16 13:48:20 +00:00
RefType RT = new RefType(((UsedId)yyVals[0+yyTop]).getQualifiedName(),null,((UsedId)yyVals[0+yyTop]).getOffset());
2014-07-09 08:52:23 +00:00
/*ausgetauscht PL 05-07-30*/
/*RT.set_UsedId($1); */
/*RT.setName(RT.get_UsedId().get_Name_1Element());*/
RT.set_ParaList(((UsedId)yyVals[0+yyTop]).get_RealParaList());
2015-01-16 13:48:20 +00:00
/*RT.setName($1.getQualifiedName());*/
2014-07-09 08:52:23 +00:00
/*PL 05-07-30 eingefuegt containedTypes ANFANG*/
containedTypes.addElement(RT);
/*PL 05-07-30 eingefuegt containedTypes ENDE*/
yyVal=RT;
}
break;
2015-01-16 13:48:20 +00:00
case 156:
// line 1318 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((DeclId)yyVals[0+yyTop]);
}
break;
2015-01-16 13:48:20 +00:00
case 157:
// line 1339 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((LocalVarDecl)yyVals[0+yyTop]);
}
break;
2015-01-16 13:48:20 +00:00
case 158:
// line 1343 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Statement)yyVals[0+yyTop]);
}
break;
2015-01-16 13:48:20 +00:00
case 159:
// line 1348 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
FormalParameter FP = new FormalParameter(((DeclId)yyVals[0+yyTop]));
FP.setType(((Type)yyVals[-1+yyTop]));
/*FP.set_DeclId($2); //auskommentiert von Andreas Stadelmeier. DeclId wird nun dem Konstruktor von FormalParameter <20>bergeben.*/
yyVal=FP;
}
break;
2015-01-16 13:48:20 +00:00
case 160:
// line 1373 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-11-04 12:47:05 +00:00
de.dhbwstuttgart.logger.Logger.getLogger("parser").debug("\nFunktionsdeklaration mit typlosen Parametern: " + ((DeclId)yyVals[0+yyTop]).name, Section.PARSER);
2014-07-09 08:52:23 +00:00
FormalParameter FP = new FormalParameter(((DeclId)yyVals[0+yyTop]));
/* #JB# 31.03.2005*/
/* ###########################################################*/
/*Type T = TypePlaceholder.fresh(); //auskommentiert von Andreas Stadelmeier*/
/* Type T = new TypePlaceholder(""); /* otth: Name wird automatisch berechnet * /*/
/* ###########################################################*/
2014-11-04 12:47:05 +00:00
/*de.dhbwstuttgart.logger.Logger.getLogger("parser").debug("\n--> berechneter Name: " + T.getName(), Section.PARSER);*/
2014-07-09 08:52:23 +00:00
/*auskommentiert von Andreas Stadelmeier (a10023) FP.setType( T );*/
/*FP.set_DeclId($1);*/
yyVal=FP;
}
break;
2015-01-16 13:48:20 +00:00
case 161:
// line 1392 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
ArgumentList AL = new ArgumentList();
AL.expr.addElement(((Expr)yyVals[0+yyTop]));
yyVal=AL;
}
break;
2015-01-16 13:48:20 +00:00
case 162:
// line 1398 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
((ArgumentList)yyVals[-2+yyTop]).expr.addElement(((Expr)yyVals[0+yyTop]));
yyVal=((ArgumentList)yyVals[-2+yyTop]);
}
break;
2015-01-16 13:48:20 +00:00
case 163:
// line 1404 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((BaseType)yyVals[0+yyTop]);
}
break;
2015-01-16 13:48:20 +00:00
case 164:
// line 1409 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
DeclId DI = new DeclId();
/* #JB# 10.04.2005 */
/* ########################################################### */
DI.setLineNumber(((Token)yyVals[0+yyTop]).getLineNumber());
DI.setOffset(((Token)yyVals[0+yyTop]).getOffset());/*hinzugef<65>gt hoth: 07.04.2006*/
/* ########################################################### */
DI.set_Name(((Token)yyVals[0+yyTop]).getLexem());
yyVal=DI;
}
break;
2015-01-16 13:48:20 +00:00
case 165:
// line 1421 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-07-09 13:07:40 +00:00
yyVal=((Expr)yyVals[0+yyTop]);
2014-07-09 08:52:23 +00:00
}
break;
2015-01-16 13:48:20 +00:00
case 166:
// line 1426 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-07-09 13:07:40 +00:00
yyVal=((LocalVarDecl)yyVals[-1+yyTop]);
2014-07-09 08:52:23 +00:00
}
break;
2015-01-16 13:48:20 +00:00
case 167:
// line 1431 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-07-09 13:07:40 +00:00
yyVal=((Statement)yyVals[0+yyTop]);
2014-07-09 08:52:23 +00:00
}
break;
2015-01-16 13:48:20 +00:00
case 168:
// line 1435 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((IfStmt)yyVals[0+yyTop]);
}
break;
2015-01-16 13:48:20 +00:00
case 169:
// line 1439 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-07-09 13:07:40 +00:00
yyVal=((IfStmt)yyVals[0+yyTop]);
2014-07-09 08:52:23 +00:00
}
break;
2015-01-16 13:48:20 +00:00
case 170:
// line 1443 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-07-09 13:07:40 +00:00
yyVal=((WhileStmt)yyVals[0+yyTop]);
2014-07-09 08:52:23 +00:00
}
break;
2015-01-16 13:48:20 +00:00
case 171:
// line 1447 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-07-09 13:07:40 +00:00
yyVal=((ForStmt)yyVals[0+yyTop]);
2014-07-09 08:52:23 +00:00
}
break;
2015-01-16 13:48:20 +00:00
case 172:
// line 1450 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Statement)yyVals[0+yyTop]);
2014-07-09 08:52:23 +00:00
}
break;
2015-01-16 13:48:20 +00:00
case 173:
// line 1455 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 13:07:40 +00:00
{
yyVal=((Expr)yyVals[0+yyTop]);
2014-07-09 13:07:40 +00:00
}
break;
2015-01-16 13:48:20 +00:00
case 174:
// line 1459 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
{
yyVal=((NewClass)yyVals[0+yyTop]);
}
break;
case 175:
// line 1464 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-09-16 09:31:15 +00:00
IntegerType IT = new IntegerType(null);
2014-07-09 08:52:23 +00:00
/* #JB# 05.04.2005 */
/* ########################################################### */
/*IT.setName($1.getLexem());*/
/* ########################################################### */
yyVal=IT;
}
break;
case 176:
// line 1473 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-09-16 09:31:15 +00:00
CharacterType CT = new CharacterType(null);
2014-07-09 08:52:23 +00:00
/* #JB# 05.04.2005 */
/* ########################################################### */
/*CT.setName($1.getLexem());*/
/* ########################################################### */
yyVal=CT;
}
break;
case 177:
// line 1483 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-11-04 12:47:05 +00:00
de.dhbwstuttgart.logger.Logger.getLogger("parser").debug("P -> Lokale Variable angelegt!", Section.PARSER);
2014-07-09 08:52:23 +00:00
LocalVarDecl LVD = new LocalVarDecl(((Type)yyVals[-1+yyTop]).getOffset(),((Type)yyVals[-1+yyTop]).getVariableLength());
LVD.setType(((Type)yyVals[-1+yyTop]));
LVD.setDeclidVector(((FieldDeclaration)yyVals[0+yyTop]).getDeclIdVector());
yyVal = LVD;
}
break;
case 178:
// line 1494 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-11-04 12:47:05 +00:00
de.dhbwstuttgart.logger.Logger.getLogger("parser").debug("P -> Lokale Variable angelegt!", Section.PARSER);
2014-07-09 08:52:23 +00:00
LocalVarDecl LVD = new LocalVarDecl(((FieldDeclaration)yyVals[0+yyTop]).getOffset(),((FieldDeclaration)yyVals[0+yyTop]).getVariableLength());
/*auskommentiert von Andreas Stadelmeier (a10023) LVD.setType(TypePlaceholder.fresh());*/
LVD.setDeclidVector(((FieldDeclaration)yyVals[0+yyTop]).getDeclIdVector());
yyVal = LVD;
}
break;
case 179:
// line 1504 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Block)yyVals[0+yyTop]);
}
break;
case 180:
// line 1508 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((EmptyStmt)yyVals[0+yyTop]);
}
break;
case 181:
// line 1512 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((ExprStmt)yyVals[0+yyTop]);
}
break;
case 182:
// line 1516 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Return)yyVals[0+yyTop]);
}
break;
case 183:
// line 1521 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
IfStmt Ifst = new IfStmt(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
Ifst.set_Expr(((Expr)yyVals[-2+yyTop]));
Ifst.set_Then_block(((Statement)yyVals[0+yyTop]));
yyVal=Ifst;
}
break;
case 184:
// line 1529 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
IfStmt IfstElst = new IfStmt(((Expr)yyVals[-4+yyTop]).getOffset(),((Expr)yyVals[-4+yyTop]).getVariableLength());
IfstElst.set_Expr(((Expr)yyVals[-4+yyTop]));
IfstElst.set_Then_block(((Statement)yyVals[-2+yyTop]));
IfstElst.set_Else_block(((Statement)yyVals[0+yyTop]));
yyVal=IfstElst;
}
break;
case 185:
// line 1538 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
WhileStmt Whlst = new WhileStmt(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
Whlst.set_Expr(((Expr)yyVals[-2+yyTop]));
Whlst.set_Loop_block(((Statement)yyVals[0+yyTop]));
yyVal=Whlst;
}
break;
case 186:
// line 1549 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
ForStmt Fst = new ForStmt(((Expr)yyVals[-6+yyTop]).getOffset(),((Expr)yyVals[-6+yyTop]).getVariableLength());
Fst.set_head_Initializer(((Expr)yyVals[-6+yyTop]));
Fst.set_head_Condition(((Expr)yyVals[-4+yyTop]));
Fst.set_head_Loop_expr(((Expr)yyVals[-2+yyTop]));
Fst.set_body_Loop_block(((Statement)yyVals[0+yyTop]));
/*Typannahme*/
yyVal = Fst;
}
break;
case 187:
// line 1561 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
ForStmt Fst = new ForStmt(((Expr)yyVals[-5+yyTop]).getOffset(),((Expr)yyVals[-5+yyTop]).getVariableLength());
Fst.set_head_Initializer(((Expr)yyVals[-5+yyTop]));
Fst.set_head_Condition(((Expr)yyVals[-3+yyTop]));
Fst.set_body_Loop_block(((Statement)yyVals[0+yyTop]));
/*Typannahme*/
yyVal = Fst;
}
break;
case 188:
// line 1572 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
ForStmt Fst = new ForStmt(((Expr)yyVals[-5+yyTop]).getOffset(),((Expr)yyVals[-5+yyTop]).getVariableLength());
Fst.set_head_Initializer(((Expr)yyVals[-5+yyTop]));
Fst.set_head_Loop_expr(((Expr)yyVals[-2+yyTop]));
Fst.set_body_Loop_block(((Statement)yyVals[0+yyTop]));
/*Typannahme*/
yyVal = Fst;
}
break;
case 189:
// line 1583 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
ForStmt Fst = new ForStmt(((Expr)yyVals[-4+yyTop]).getOffset(),((Expr)yyVals[-4+yyTop]).getVariableLength());
Fst.set_head_Condition(((Expr)yyVals[-4+yyTop]));
Fst.set_head_Loop_expr(((Expr)yyVals[-2+yyTop]));
Fst.set_body_Loop_block(((Statement)yyVals[0+yyTop]));
/*Typannahme*/
yyVal = Fst;
}
break;
case 190:
// line 1594 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
ForStmt Fst = new ForStmt(((Expr)yyVals[-4+yyTop]).getOffset(),((Expr)yyVals[-4+yyTop]).getVariableLength());
Fst.set_head_Initializer(((Expr)yyVals[-4+yyTop]));
Fst.set_body_Loop_block(((Statement)yyVals[0+yyTop]));
/*Typannahme*/
yyVal = Fst;
}
break;
case 191:
// line 1604 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
ForStmt Fst = new ForStmt(((Expr)yyVals[-3+yyTop]).getOffset(),((Expr)yyVals[-3+yyTop]).getVariableLength());
Fst.set_head_Condition(((Expr)yyVals[-3+yyTop]));
Fst.set_body_Loop_block(((Statement)yyVals[0+yyTop]));
/*Typannahme*/
yyVal = Fst;
}
break;
case 192:
// line 1614 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
ForStmt Fst = new ForStmt(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
Fst.set_head_Loop_expr(((Expr)yyVals[-2+yyTop]));
Fst.set_body_Loop_block(((Statement)yyVals[0+yyTop]));
/*Typannahme*/
yyVal = Fst;
}
break;
case 193:
// line 1624 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
ForStmt Fst = new ForStmt(((Statement)yyVals[0+yyTop]).getOffset(),((Statement)yyVals[0+yyTop]).getVariableLength());
Fst.set_body_Loop_block(((Statement)yyVals[0+yyTop]));
/*Typannahme*/
yyVal = Fst;
}
break;
case 194:
// line 1633 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-11-04 12:47:05 +00:00
de.dhbwstuttgart.logger.Logger.getLogger("parser").debug("conditionalexpression", Section.PARSER);
2014-07-09 08:52:23 +00:00
yyVal=((Expr)yyVals[0+yyTop]);
}
break;
case 195:
// line 1638 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Assign)yyVals[0+yyTop]);
}
break;
case 196:
// line 1644 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
EmptyStmt Empst = new EmptyStmt();
yyVal=Empst;
}
break;
case 197:
// line 1650 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Expr)yyVals[-1+yyTop]);
}
break;
case 198:
// line 1655 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Return ret = new Return(-1,-1);
yyVal= ret;
}
break;
case 199:
// line 1660 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Return retexp = new Return(((Expr)yyVals[-1+yyTop]).getOffset(),((Expr)yyVals[-1+yyTop]).getVariableLength());
retexp.set_ReturnExpr(((Expr)yyVals[-1+yyTop]));
yyVal=retexp;
}
break;
case 200:
// line 1667 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Statement)yyVals[0+yyTop]);
}
break;
case 201:
// line 1671 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((IfStmt)yyVals[0+yyTop]);
}
break;
case 202:
// line 1675 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((WhileStmt)yyVals[0+yyTop]);
}
break;
case 203:
// line 1680 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Expr)yyVals[0+yyTop]);
}
break;
case 204:
// line 1686 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-11-04 12:47:05 +00:00
de.dhbwstuttgart.logger.Logger.getLogger("parser").debug("\nParser --> Zuweisung1!\n", Section.PARSER);
2014-07-09 08:52:23 +00:00
Assign Ass = new Assign(((UsedId)yyVals[-2+yyTop]).getOffset(),((UsedId)yyVals[-2+yyTop]).getVariableLength());
LocalOrFieldVar LOFV = new LocalOrFieldVar(((UsedId)yyVals[-2+yyTop]).getOffset(),((UsedId)yyVals[-2+yyTop]).getVariableLength());
LOFV.set_UsedId(((UsedId)yyVals[-2+yyTop]));
/*auskommentiert von Andreas Stadelmeier (a10023) LOFV.setType(TypePlaceholder.fresh());*/
/*auskommentiert von Andreas Stadelmeier (a10023) Ass.setType(TypePlaceholder.fresh());*/
if( ((Operator)yyVals[-1+yyTop]) == null )
{
2014-11-04 12:47:05 +00:00
de.dhbwstuttgart.logger.Logger.getLogger("parser").debug("\nParser --> Zuweisung1 --> " + ((Expr)yyVals[0+yyTop]) + " \n", Section.PARSER);
2014-07-09 08:52:23 +00:00
Ass.set_Expr( LOFV,((Expr)yyVals[0+yyTop]) );
}
else
{
Binary Bin = new Binary(((Expr)yyVals[0+yyTop]).getOffset(),((Expr)yyVals[0+yyTop]).getVariableLength());
Bin.set_Expr1(LOFV);
Bin.set_Operator(((Operator)yyVals[-1+yyTop]));
Bin.set_Expr2(((Expr)yyVals[0+yyTop]));
2014-11-04 12:47:05 +00:00
de.dhbwstuttgart.logger.Logger.getLogger("parser").debug("\nParser --> Zuweisung1 --> Binary\n", Section.PARSER);
2014-07-09 08:52:23 +00:00
/*auskommentiert von Andreas Stadelmeier (a10023) Bin.setType(TypePlaceholder.fresh());*/
Ass.set_Expr( LOFV, Bin );
}
yyVal=Ass;
}
break;
case 205:
// line 1711 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Assign Ass =new Assign(((UsedId)yyVals[-2+yyTop]).getOffset(),((UsedId)yyVals[-2+yyTop]).getVariableLength());
LocalOrFieldVar LOFV = new LocalOrFieldVar(((UsedId)yyVals[-2+yyTop]).getOffset(),((UsedId)yyVals[-2+yyTop]).getVariableLength());
LOFV.set_UsedId(((UsedId)yyVals[-2+yyTop]));
/*auskommentiert von Andreas Stadelmeier (a10023) LOFV.setType(TypePlaceholder.fresh());*/
/*auskommentiert von Andreas Stadelmeier (a10023) Ass.setType(TypePlaceholder.fresh());*/
if(((Operator)yyVals[-1+yyTop])==null)
{
Ass.set_Expr(LOFV,((NewClass)yyVals[0+yyTop]));
}
else
{
Binary Bin = new Binary(((NewClass)yyVals[0+yyTop]).getOffset(),((NewClass)yyVals[0+yyTop]).getVariableLength());
Bin.set_Expr1(LOFV);
Bin.set_Operator(((Operator)yyVals[-1+yyTop]));
/*auskommentiert von Andreas Stadelmeier (a10023) Bin.setType(TypePlaceholder.fresh());*/
Bin.set_Expr2(((NewClass)yyVals[0+yyTop]));
Ass.set_Expr(LOFV,Bin);
}
yyVal=Ass;
}
break;
2015-01-16 13:48:20 +00:00
case 206:
// line 1734 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Assign)yyVals[0+yyTop]);
2014-07-09 08:52:23 +00:00
}
break;
2015-01-16 13:48:20 +00:00
case 207:
// line 1738 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Expr)yyVals[0+yyTop]);
}
break;
2015-01-16 13:48:20 +00:00
case 208:
// line 1742 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Expr)yyVals[0+yyTop]);
}
break;
2015-01-16 13:48:20 +00:00
case 209:
// line 1746 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-07-09 13:07:40 +00:00
yyVal=((Expr)yyVals[0+yyTop]);
2014-07-09 08:52:23 +00:00
}
break;
2015-01-16 13:48:20 +00:00
case 210:
// line 1750 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 13:07:40 +00:00
{
yyVal=((Expr)yyVals[0+yyTop]);
2014-07-09 13:07:40 +00:00
}
break;
2015-01-16 13:48:20 +00:00
case 211:
// line 1754 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
{
yyVal=((MethodCall)yyVals[0+yyTop]);
}
break;
case 212:
// line 1765 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
IfStmt IfElno = new IfStmt(((Expr)yyVals[-4+yyTop]).getOffset(),((Expr)yyVals[-4+yyTop]).getVariableLength());
IfElno.set_Expr(((Expr)yyVals[-4+yyTop]));
IfElno.set_Then_block(((Statement)yyVals[-2+yyTop]));
IfElno.set_Else_block(((Statement)yyVals[0+yyTop]));
yyVal=IfElno;
}
break;
case 213:
// line 1774 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
WhileStmt Whstno = new WhileStmt(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
Whstno.set_Expr(((Expr)yyVals[-2+yyTop]));
Whstno.set_Loop_block(((Statement)yyVals[0+yyTop]));
yyVal=Whstno;
}
break;
case 214:
// line 1782 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Expr)yyVals[0+yyTop]);
}
break;
case 215:
// line 1786 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Binary LogOr = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
OrOp OrO = new OrOp(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
LogOr.set_Expr1(((Expr)yyVals[-2+yyTop]));
LogOr.set_Expr2(((Expr)yyVals[0+yyTop]));
LogOr.set_Operator(OrO);
/*auskommentiert von Andreas Stadelmeier (a10023) LogOr.setType(TypePlaceholder.fresh());*/
yyVal=LogOr;
}
break;
case 216:
// line 1799 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=null;
}
break;
case 217:
// line 1804 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Block)yyVals[0+yyTop]);
}
break;
case 218:
// line 1808 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
/*Lambdabody kann auch nur aus einer Expression bestehen. In diesem Fall wird ein Block erstellt, welcher als einziges Statement ein return statment mit der expression hat.*/
/*Bsp.: Aus der Expression |var=="hallo"| wird: |{return var=="hallo";}|*/
Block ret=new Block();
ret.statements.add((Statement)new Return(0,0).set_ReturnExpr(((Expr)yyVals[0+yyTop])));
/*ret.statements.add((ExprStmt)$1);*/
yyVal=ret;
}
break;
case 219:
// line 1818 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=null;
}
break;
case 220:
// line 1822 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((ParameterList)yyVals[-1+yyTop]);
}
break;
case 221:
// line 1827 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
LambdaExpression lambda = new LambdaExpression(/*((ParameSterList)$2).getOffset(),((ParameterList)$2).getVariableLength()*/0,0);
if(((ParameterList)yyVals[-2+yyTop])!=null)lambda.setParameterList(((ParameterList)yyVals[-2+yyTop]));
lambda.setBody((Block)((Block)yyVals[0+yyTop]));
yyVal=lambda;
}
break;
case 222:
// line 1846 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((UsedId)yyVals[0+yyTop]);
}
break;
case 223:
// line 1851 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=null;
}
break;
case 224:
// line 1855 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
TimesOp TEO = new TimesOp(-1,-1);
yyVal=TEO;
}
break;
case 225:
// line 1860 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
DivideOp DEO = new DivideOp(-1,-1);
yyVal=DEO;
}
break;
case 226:
// line 1865 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
ModuloOp MEO = new ModuloOp(-1,-1);
yyVal=MEO;
}
break;
case 227:
// line 1870 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
PlusOp PEO = new PlusOp(-1,-1);
yyVal=PEO;
}
break;
case 228:
// line 1875 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
MinusOp MEO = new MinusOp(-1,-1);
yyVal=MEO;
}
break;
case 229:
// line 1887 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
PreIncExpr PRINC = new PreIncExpr(((Expr)yyVals[0+yyTop]).getOffset(),((Expr)yyVals[0+yyTop]).getVariableLength());
PRINC.set_Expr(((Expr)yyVals[0+yyTop]));
yyVal=PRINC;
}
break;
case 230:
// line 1894 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
PreDecExpr PRDEC = new PreDecExpr(((Expr)yyVals[0+yyTop]).getOffset(),((Expr)yyVals[0+yyTop]).getVariableLength());
PRDEC.set_Expr(((Expr)yyVals[0+yyTop]));
yyVal=PRDEC;
}
break;
case 231:
// line 1901 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
PostIncExpr PIE = new PostIncExpr(((Expr)yyVals[-1+yyTop]).getOffset(),((Expr)yyVals[-1+yyTop]).getVariableLength());
PIE.set_Expr(((Expr)yyVals[-1+yyTop]));
yyVal=PIE;
}
break;
case 232:
// line 1908 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
PostDecExpr PDE = new PostDecExpr(((Expr)yyVals[-1+yyTop]).getOffset(),((Expr)yyVals[-1+yyTop]).getVariableLength());
PDE.set_Expr(((Expr)yyVals[-1+yyTop]));
yyVal=PDE;
}
break;
case 233:
// line 1916 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-11-04 12:47:05 +00:00
de.dhbwstuttgart.logger.Logger.getLogger("parser").debug("M1", Section.PARSER);
2014-07-09 08:52:23 +00:00
MethodCall MC = new MethodCall(((UsedId)yyVals[-2+yyTop]).getOffset(),((UsedId)yyVals[-2+yyTop]).getVariableLength());
UsedId udidmeth = new UsedId(((UsedId)yyVals[-2+yyTop]).getOffset());
udidmeth.set_Name((String)((((UsedId)yyVals[-2+yyTop]).get_Name()).elementAt(((UsedId)yyVals[-2+yyTop]).get_Name().size()-1)));
MC.set_UsedId(udidmeth);
Receiver rec = null;
if (((UsedId)yyVals[-2+yyTop]).get_Name().size() > 2) {
((UsedId)yyVals[-2+yyTop]).removeLast();
/*macht aus der Liste von Strings */
/*in usedid.name einen InstVar */
InstVar INSTVA = new InstVar(((UsedId)yyVals[-2+yyTop]),((UsedId)yyVals[-2+yyTop]).getOffset(),((UsedId)yyVals[-2+yyTop]).getVariableLength());
/*auskommentiert von Andreas Stadelmeier (a10023) INSTVA.setType(TypePlaceholder.fresh());*/
rec = new Receiver(INSTVA);
}
else if (((UsedId)yyVals[-2+yyTop]).get_Name().size() == 2) {
LocalOrFieldVar LOFV = new LocalOrFieldVar(((UsedId)yyVals[-2+yyTop]).getOffset(),((UsedId)yyVals[-2+yyTop]).getVariableLength());
((UsedId)yyVals[-2+yyTop]).removeLast();
LOFV.set_UsedId(((UsedId)yyVals[-2+yyTop]));
/*auskommentiert von Andreas Stadelmeier (a10023) LOFV.setType(TypePlaceholder.fresh());*/
rec = new Receiver(LOFV);
}
MC.set_Receiver(rec);
/*auskommentiert von Andreas Stadelmeier (a10023) MC.setType(TypePlaceholder.fresh());*/
yyVal=MC;
}
break;
case 234:
// line 1946 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-11-04 12:47:05 +00:00
de.dhbwstuttgart.logger.Logger.getLogger("parser").debug("M2", Section.PARSER);
2014-07-09 08:52:23 +00:00
MethodCall MCarg = new MethodCall(((UsedId)yyVals[-3+yyTop]).getOffset(),((UsedId)yyVals[-3+yyTop]).getVariableLength());
UsedId udidmeth = new UsedId(((UsedId)yyVals[-3+yyTop]).getOffset());
udidmeth.set_Name((String)((((UsedId)yyVals[-3+yyTop]).get_Name()).elementAt(((UsedId)yyVals[-3+yyTop]).get_Name().size()-1)));
MCarg.set_UsedId(udidmeth);
Receiver rec = null;
if (((UsedId)yyVals[-3+yyTop]).get_Name().size() > 2) {
((UsedId)yyVals[-3+yyTop]).removeLast();
/*macht aus der Liste von Strings */
/*in usedid.name einen InstVar */
InstVar INSTVA = new InstVar(((UsedId)yyVals[-3+yyTop]),((UsedId)yyVals[-3+yyTop]).getOffset(),((UsedId)yyVals[-3+yyTop]).getVariableLength());
/*auskommentiert von Andreas Stadelmeier (a10023) INSTVA.setType(TypePlaceholder.fresh());*/
rec = new Receiver(INSTVA);
}
else if (((UsedId)yyVals[-3+yyTop]).get_Name().size() == 2) {
LocalOrFieldVar LOFV = new LocalOrFieldVar(((UsedId)yyVals[-3+yyTop]).getOffset(),((UsedId)yyVals[-3+yyTop]).getVariableLength());
((UsedId)yyVals[-3+yyTop]).removeLast();
LOFV.set_UsedId(((UsedId)yyVals[-3+yyTop]));
/*auskommentiert von Andreas Stadelmeier (a10023) LOFV.setType(TypePlaceholder.fresh());*/
rec = new Receiver(LOFV);
}
MCarg.set_Receiver(rec);
MCarg.set_ArgumentList(((ArgumentList)yyVals[-1+yyTop]));
/*auskommentiert von Andreas Stadelmeier (a10023) MCarg.setType(TypePlaceholder.fresh());*/
yyVal=MCarg;
}
break;
case 235:
// line 1977 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-11-04 12:47:05 +00:00
de.dhbwstuttgart.logger.Logger.getLogger("parser").debug("M3", Section.PARSER);
2014-07-09 08:52:23 +00:00
MethodCall MCpr = new MethodCall(((Expr)yyVals[-4+yyTop]).getOffset(),((Expr)yyVals[-4+yyTop]).getVariableLength());
/* PL 05-08-21 primary ist kein UsedId*/
/*$1.usedid.set_Name($3.getLexem());*/
/*MCpr.set_UsedId($1.get_UsedId());*/
UsedId udidmeth = new UsedId(((Expr)yyVals[-4+yyTop]).getOffset());
udidmeth.set_Name(((Token)yyVals[-2+yyTop]).getLexem());
MCpr.set_UsedId(udidmeth);
/* #JB# 04.06.2005 */
/* ########################################################### */
MCpr.set_Receiver(new Receiver(((Expr)yyVals[-4+yyTop])));
/* ########################################################### */
/*auskommentiert von Andreas Stadelmeier (a10023) MCpr.setType(TypePlaceholder.fresh());*/
yyVal=MCpr;
}
break;
case 236:
// line 1996 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-11-04 12:47:05 +00:00
de.dhbwstuttgart.logger.Logger.getLogger("parser").debug("M4", Section.PARSER);
2014-07-09 08:52:23 +00:00
MethodCall MCPA = new MethodCall(((Expr)yyVals[-5+yyTop]).getOffset(),((Expr)yyVals[-5+yyTop]).getVariableLength());
/* PL 05-08-21 primary ist kein UsedId*/
/*$1.usedid.set_Name($3.getLexem());*/
/*MCPA.set_UsedId($1.get_UsedId());*/
UsedId udidmeth = new UsedId(((Token)yyVals[-3+yyTop]).getOffset());
udidmeth.set_Name(((Token)yyVals[-3+yyTop]).getLexem());
MCPA.set_UsedId(udidmeth);
/* #JB# 04.06.2005 */
/* ########################################################### */
MCPA.set_Receiver(new Receiver(((Expr)yyVals[-5+yyTop])));
/* ########################################################### */
MCPA.set_ArgumentList(((ArgumentList)yyVals[-1+yyTop]));
/*auskommentiert von Andreas Stadelmeier (a10023) MCPA.setType(TypePlaceholder.fresh());*/
yyVal=MCPA;
}
break;
case 237:
// line 2019 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
NewClass NC = new NewClass(((UsedId)yyVals[-2+yyTop]).getOffset(),((UsedId)yyVals[-2+yyTop]).getVariableLength());
NC.set_UsedId(((UsedId)yyVals[-2+yyTop]));
usedIdsToCheck.addElement(((UsedId)yyVals[-2+yyTop]));
/*auskommentiert von Andreas Stadelmeier (a10023) NC.setType(TypePlaceholder.fresh());*/
yyVal=NC;
}
break;
case 238:
// line 2027 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
NewClass NCarg = new NewClass(((UsedId)yyVals[-3+yyTop]).getOffset(),((UsedId)yyVals[-3+yyTop]).getVariableLength());
NCarg.set_UsedId(((UsedId)yyVals[-3+yyTop]));
usedIdsToCheck.addElement(((UsedId)yyVals[-3+yyTop]));
NCarg.set_ArgumentList(((ArgumentList)yyVals[-1+yyTop]));
/*auskommentiert von Andreas Stadelmeier (a10023) NCarg.setType(TypePlaceholder.fresh());*/
yyVal=NCarg;
}
break;
case 239:
// line 2037 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Expr)yyVals[0+yyTop]);
}
break;
case 240:
// line 2041 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Binary And = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
AndOp AndO = new AndOp(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
And.set_Expr1(((Expr)yyVals[-2+yyTop]));
And.set_Expr2(((Expr)yyVals[0+yyTop]));
And.set_Operator(AndO);
/*auskommentiert von Andreas Stadelmeier (a10023) And.setType(TypePlaceholder.fresh());*/
yyVal=And;
}
break;
case 241:
// line 2057 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Expr)yyVals[0+yyTop]);
}
break;
case 242:
// line 2061 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Expr)yyVals[0+yyTop]);
}
break;
case 243:
// line 2065 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
PositivExpr POSEX=new PositivExpr(((Expr)yyVals[0+yyTop]).getOffset(),((Expr)yyVals[0+yyTop]).getVariableLength());
UnaryPlus UP= new UnaryPlus();
POSEX.set_UnaryPlus(UP);
POSEX.set_Expr(((Expr)yyVals[0+yyTop]));
yyVal=POSEX;
}
break;
case 244:
// line 2073 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
NegativeExpr NEGEX=new NegativeExpr(((Expr)yyVals[0+yyTop]).getOffset(),((Expr)yyVals[0+yyTop]).getVariableLength());
UnaryMinus UM=new UnaryMinus();
NEGEX.set_UnaryMinus(UM);
NEGEX.set_Expr(((Expr)yyVals[0+yyTop]));
yyVal=NEGEX;
}
break;
case 245:
// line 2081 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Expr)yyVals[0+yyTop]);
}
break;
case 246:
// line 2086 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Expr)yyVals[0+yyTop]);
}
break;
case 247:
// line 2090 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
if (((UsedId)yyVals[0+yyTop]).get_Name().size() > 1) {
/*macht aus der Liste von Strings */
/*in usedid.name einen InstVar */
InstVar INSTVA = new InstVar(((UsedId)yyVals[0+yyTop]),((UsedId)yyVals[0+yyTop]).getOffset(),((UsedId)yyVals[0+yyTop]).getVariableLength());
/*auskommentiert von Andreas Stadelmeier (a10023) INSTVA.setType(TypePlaceholder.fresh());*/
yyVal = INSTVA;
}
else {
LocalOrFieldVar Postincexpr = new LocalOrFieldVar(((UsedId)yyVals[0+yyTop]).getOffset(),((UsedId)yyVals[0+yyTop]).getVariableLength());
Postincexpr.set_UsedId(((UsedId)yyVals[0+yyTop]));
/*auskommentiert von Andreas Stadelmeier (a10023) Postincexpr.setType(TypePlaceholder.fresh());*/
yyVal=Postincexpr;
}
}
break;
case 248:
// line 2108 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Expr)yyVals[0+yyTop]);
}
break;
case 249:
// line 2112 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Expr)yyVals[0+yyTop]);
}
break;
case 250:
// line 2117 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Expr)yyVals[0+yyTop]);
}
break;
case 251:
// line 2122 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
2014-07-09 13:07:40 +00:00
yyVal=((Expr)yyVals[0+yyTop]);
2014-07-09 08:52:23 +00:00
}
break;
case 253:
// line 2128 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 13:07:40 +00:00
{
yyVal=((Literal)yyVals[0+yyTop]);
}
break;
case 254:
// line 2132 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
This T = new This(((Token)yyVals[0+yyTop]).getOffset(),((Token)yyVals[0+yyTop]).getLexem().length());
UsedId UT = new UsedId(((Token)yyVals[0+yyTop]).getOffset());
UT.set_Name(((Token)yyVals[0+yyTop]).getLexem());
T.set_UsedId(UT);
yyVal=T;
}
break;
case 255:
// line 2153 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((MethodCall)yyVals[0+yyTop]);
}
break;
case 256:
// line 2157 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Expr)yyVals[0+yyTop]);
}
break;
case 257:
// line 2162 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{yyVal=((Expr)yyVals[0+yyTop]);}
break;
case 258:
// line 2164 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{NotExpr NE=new NotExpr(((Expr)yyVals[0+yyTop]).getOffset(),((Expr)yyVals[0+yyTop]).getVariableLength());
UnaryNot UN=new UnaryNot();
NE.set_UnaryNot(UN);
NE.set_Expr(((Expr)yyVals[0+yyTop]));
yyVal=NE;
}
break;
case 259:
// line 2170 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{yyVal=((CastExpr)yyVals[0+yyTop]);}
break;
case 260:
// line 2172 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{yyVal=((Expr)yyVals[0+yyTop]);}
break;
case 262:
// line 2177 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{IntLiteral IL = new IntLiteral();
IL.set_Int(((Token)yyVals[0+yyTop]).String2Int());
yyVal = IL;
}
break;
case 263:
// line 2182 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{BoolLiteral BL = new BoolLiteral();
BL.set_Bool(((Token)yyVals[0+yyTop]).String2Bool());
yyVal = BL;
}
break;
case 264:
// line 2186 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{CharLiteral CL = new CharLiteral();
CL.set_Char(((Token)yyVals[0+yyTop]).CharInString());
yyVal=CL;
}
break;
case 265:
// line 2191 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
StringLiteral ST = new StringLiteral();
ST.set_String(((Token)yyVals[0+yyTop]).get_String());
yyVal=ST;
}
break;
case 266:
// line 2196 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{ LongLiteral LL = new LongLiteral();
LL.set_Long(((Token)yyVals[0+yyTop]).String2Long());
yyVal = LL;
}
break;
case 267:
// line 2200 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
FloatLiteral FL = new FloatLiteral();
FL.set_Float(((Token)yyVals[0+yyTop]).String2Float());
yyVal = FL;
}
break;
case 268:
// line 2205 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
DoubleLiteral DL = new DoubleLiteral();
DL.set_Double(((Token)yyVals[0+yyTop]).String2Double());
yyVal = DL;
}
break;
case 269:
// line 2211 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Null NN = new Null();
yyVal=NN;
}
break;
case 270:
// line 2217 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
CastExpr CaEx=new CastExpr(((Expr)yyVals[0+yyTop]).getOffset(),((Expr)yyVals[0+yyTop]).getVariableLength());
CaEx.set_Type(((BaseType)yyVals[-2+yyTop]));
CaEx.set_Expr(((Expr)yyVals[0+yyTop]));
yyVal=CaEx;
}
break;
case 271:
// line 2226 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Expr)yyVals[0+yyTop]);
}
break;
case 272:
// line 2230 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
}
break;
case 273:
// line 2234 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Expr)yyVals[0+yyTop]);
}
break;
case 274:
// line 2238 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Binary EQ = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
EqualOp EO = new EqualOp(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
EQ.set_Expr1(((Expr)yyVals[-2+yyTop]));
EQ.set_Expr2(((Expr)yyVals[0+yyTop]));
EQ.set_Operator(EO);
/*auskommentiert von Andreas Stadelmeier (a10023) EQ.setType(TypePlaceholder.fresh());*/
yyVal=EQ;
}
break;
case 275:
// line 2248 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Binary NEQ = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
NotEqualOp NEO = new NotEqualOp(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
NEQ.set_Expr1(((Expr)yyVals[-2+yyTop]));
NEQ.set_Expr2(((Expr)yyVals[0+yyTop]));
NEQ.set_Operator(NEO);
/*auskommentiert von Andreas Stadelmeier (a10023) NEQ.setType(TypePlaceholder.fresh());*/
yyVal=NEQ;
}
break;
case 276:
// line 2259 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Expr)yyVals[0+yyTop]);
}
break;
case 277:
// line 2263 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Binary LO = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
LessOp LOO = new LessOp(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
LO.set_Expr1(((Expr)yyVals[-2+yyTop]));
LO.set_Expr2(((Expr)yyVals[0+yyTop]));
LO.set_Operator(LOO);
/*auskommentiert von Andreas Stadelmeier (a10023) LO.setType(TypePlaceholder.fresh());*/
yyVal=LO;
}
break;
case 278:
// line 2273 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Binary GO = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
GreaterOp GOO = new GreaterOp(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
GO.set_Expr1(((Expr)yyVals[-2+yyTop]));
GO.set_Expr2(((Expr)yyVals[0+yyTop]));
GO.set_Operator( GOO );
/*auskommentiert von Andreas Stadelmeier (a10023) GO.setType(TypePlaceholder.fresh());*/
yyVal=GO;
}
break;
case 279:
// line 2283 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Binary LE = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
LessEquOp LEO = new LessEquOp(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
LE.set_Expr1(((Expr)yyVals[-2+yyTop]));
LE.set_Expr2(((Expr)yyVals[0+yyTop]));
LE.set_Operator(LEO);
/*auskommentiert von Andreas Stadelmeier (a10023) LE.setType(TypePlaceholder.fresh());*/
yyVal=LE;
}
break;
case 280:
// line 2293 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Binary GE = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
GreaterEquOp GEO = new GreaterEquOp(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
GE.set_Expr1(((Expr)yyVals[-2+yyTop]));
GE.set_Expr2(((Expr)yyVals[0+yyTop]));
GE.set_Operator(GEO);
/*auskommentiert von Andreas Stadelmeier (a10023) GE.setType(TypePlaceholder.fresh());*/
yyVal=GE;
}
break;
case 281:
// line 2303 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
InstanceOf ISO=new InstanceOf(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
ISO.set_Expr(((Expr)yyVals[-2+yyTop]));
ISO.set_Type(((RefType)yyVals[0+yyTop]));
yyVal=ISO;
}
break;
case 282:
// line 2311 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Expr)yyVals[0+yyTop]);
}
break;
case 283:
// line 2316 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Expr)yyVals[0+yyTop]);
}
break;
case 284:
// line 2320 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Binary AD = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
PlusOp PO = new PlusOp(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
AD.set_Expr1(((Expr)yyVals[-2+yyTop]));
AD.set_Expr2(((Expr)yyVals[0+yyTop]));
AD.set_Operator(PO);
/*auskommentiert von Andreas Stadelmeier (a10023) AD.setType(TypePlaceholder.fresh());*/
yyVal=AD;
}
break;
case 285:
// line 2330 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Binary MI = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
MinusOp MO = new MinusOp(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
MI.set_Expr1(((Expr)yyVals[-2+yyTop]));
MI.set_Expr2(((Expr)yyVals[0+yyTop]));
MI.set_Operator(MO);
/*auskommentiert von Andreas Stadelmeier (a10023) MI.setType(TypePlaceholder.fresh());*/
yyVal=MI;
}
break;
case 286:
// line 2341 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
yyVal=((Expr)yyVals[0+yyTop]);
}
break;
case 287:
// line 2345 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Binary ML = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
TimesOp TO = new TimesOp(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
ML.set_Expr1(((Expr)yyVals[-2+yyTop]));
ML.set_Expr2(((Expr)yyVals[0+yyTop]));
ML.set_Operator(TO);
/*auskommentiert von Andreas Stadelmeier (a10023) ML.setType(TypePlaceholder.fresh());*/
yyVal=ML;
}
break;
case 288:
// line 2355 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Binary DV = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
DivideOp DO = new DivideOp(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
DV.set_Expr1(((Expr)yyVals[-2+yyTop]));
DV.set_Expr2(((Expr)yyVals[0+yyTop]));
DV.set_Operator(DO);
/*auskommentiert von Andreas Stadelmeier (a10023) DV.setType(TypePlaceholder.fresh());*/
yyVal = DV;
}
break;
case 289:
// line 2365 "./../src/de/dhbwstuttgart/parser/JavaParser.jay"
2014-07-09 08:52:23 +00:00
{
Binary MD = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
ModuloOp MO = new ModuloOp(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength());
MD.set_Expr1(((Expr)yyVals[-2+yyTop]));
MD.set_Expr2(((Expr)yyVals[0+yyTop]));
MD.set_Operator(MO);
/*auskommentiert von Andreas Stadelmeier (a10023) MD.setType(TypePlaceholder.fresh());*/
yyVal =MD;
}
break;
// line 3127 "-"
2014-07-09 08:52:23 +00:00
}
yyTop -= yyLen[yyN];
yyState = yyStates[yyTop];
int yyM = yyLhs[yyN];
if (yyState == 0 && yyM == 0) {
//t if (yydebug != null) yydebug.shift(0, yyFinal);
yyState = yyFinal;
if (yyToken < 0) {
yyToken = yyLex.advance() ? yyLex.token() : 0;
//t if (yydebug != null)
//t yydebug.lex(yyState, yyToken,yyname(yyToken), yyLex.value());
}
if (yyToken == 0) {
//t if (yydebug != null) yydebug.accept(yyVal);
return yyVal;
}
continue yyLoop;
}
if ((yyN = yyGindex[yyM]) != 0 && (yyN += yyState) >= 0
&& yyN < yyTable.length && yyCheckInit.yyCheck[yyN] == yyState)
yyState = yyTable[yyN];
else
yyState = yyDgoto[yyM];
//t if (yydebug != null) yydebug.shift(yyStates[yyTop], yyState);
continue yyLoop;
}
}
}
protected static final short yyLhs [] = { -1,
0, 0, 0, 0, 0, 99, 27, 27, 26, 93,
93, 28, 28, 106, 106, 24, 25, 25, 23, 1,
2014-07-09 08:52:23 +00:00
1, 1, 1, 1, 1, 1, 1, 9, 9, 8,
8, 2, 2, 2, 2, 113, 113, 113, 113, 113,
113, 116, 116, 116, 7, 7, 41, 41, 29, 33,
33, 3, 3, 34, 34, 16, 16, 42, 42, 42,
42, 42, 42, 30, 4, 4, 32, 17, 17, 17,
2014-08-07 15:13:55 +00:00
31, 114, 114, 114, 114, 115, 115, 5, 5, 18,
18, 111, 107, 107, 10, 6, 20, 20, 11, 12,
12, 12, 12, 12, 12, 14, 43, 43, 108, 108,
109, 109, 109, 109, 49, 95, 98, 98, 94, 94,
96, 96, 97, 97, 13, 13, 13, 13, 13, 13,
2014-07-09 08:52:23 +00:00
13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
2014-08-07 15:13:55 +00:00
13, 13, 13, 13, 13, 40, 40, 40, 40, 19,
19, 44, 45, 45, 51, 51, 110, 110, 39, 39,
2015-01-16 13:48:20 +00:00
15, 15, 37, 37, 38, 21, 81, 81, 50, 50,
104, 104, 36, 22, 79, 47, 82, 82, 82, 82,
82, 82, 72, 72, 35, 35, 48, 48, 80, 80,
80, 80, 87, 88, 84, 85, 85, 85, 85, 85,
85, 85, 85, 70, 70, 90, 78, 91, 91, 83,
83, 83, 69, 100, 100, 73, 73, 73, 73, 73,
73, 89, 86, 68, 68, 102, 46, 46, 52, 52,
71, 103, 101, 101, 101, 101, 101, 101, 74, 75,
76, 77, 105, 105, 105, 105, 92, 92, 67, 67,
58, 58, 58, 58, 58, 56, 56, 56, 56, 55,
66, 66, 54, 54, 54, 54, 57, 57, 57, 65,
65, 53, 53, 53, 53, 53, 53, 53, 53, 112,
64, 64, 63, 63, 63, 62, 62, 62, 62, 62,
62, 61, 60, 60, 60, 59, 59, 59, 59,
2014-07-09 08:52:23 +00:00
};
protected static final short yyLen [] = { 2,
1, 2, 3, 2, 3, 3, 1, 2, 3, 1,
2, 1, 1, 1, 1, 3, 3, 3, 1, 3,
4, 4, 5, 4, 5, 5, 6, 1, 4, 1,
4, 3, 4, 4, 5, 1, 4, 1, 3, 6,
3, 1, 3, 3, 2, 3, 1, 2, 2, 2,
3, 2, 3, 2, 3, 1, 2, 1, 1, 1,
1, 1, 1, 1, 1, 2, 1, 1, 1, 1,
2014-08-07 15:13:55 +00:00
2, 1, 3, 3, 1, 0, 3, 1, 1, 1,
1, 2, 2, 3, 6, 2, 3, 1, 3, 3,
2, 4, 2, 3, 4, 2, 2, 3, 3, 4,
2014-08-07 15:13:55 +00:00
2, 3, 3, 4, 2, 1, 1, 3, 1, 3,
1, 3, 1, 3, 3, 2, 3, 4, 3, 4,
4, 5, 2, 3, 3, 4, 3, 4, 4, 5,
1, 2, 2, 2, 3, 1, 3, 1, 3, 1,
3, 1, 1, 2, 1, 3, 4, 5, 1, 3,
2015-01-16 13:48:20 +00:00
3, 4, 1, 1, 1, 1, 1, 1, 2, 1,
1, 3, 1, 1, 1, 2, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 2, 1, 1, 1,
1, 1, 5, 7, 5, 9, 8, 8, 8, 7,
7, 7, 6, 1, 1, 1, 2, 2, 3, 1,
1, 1, 1, 3, 3, 1, 1, 1, 1, 1,
1, 7, 5, 1, 3, 1, 1, 1, 2, 3,
3, 1, 1, 1, 1, 1, 1, 1, 2, 2,
2, 2, 3, 4, 5, 6, 4, 5, 1, 3,
1, 1, 2, 2, 1, 1, 1, 1, 1, 1,
1, 3, 1, 1, 1, 1, 1, 2, 1, 1,
3, 1, 1, 1, 1, 1, 1, 1, 1, 4,
1, 3, 1, 3, 3, 1, 3, 3, 3, 3,
3, 1, 1, 3, 3, 1, 3, 3, 3,
2014-07-09 08:52:23 +00:00
};
protected static final short yyDefRed [] = { 0,
62, 153, 176, 0, 63, 175, 60, 59, 58, 0,
0, 0, 61, 19, 0, 14, 15, 13, 12, 7,
2015-01-16 13:48:20 +00:00
0, 0, 155, 163, 154, 0, 0, 0, 0, 47,
0, 0, 10, 0, 0, 0, 0, 0, 0, 0,
8, 0, 0, 0, 71, 0, 0, 0, 0, 0,
48, 11, 0, 0, 0, 0, 0, 0, 20, 0,
0, 6, 9, 0, 0, 0, 0, 32, 0, 16,
2014-08-07 15:13:55 +00:00
0, 72, 0, 75, 137, 139, 5, 0, 0, 0,
0, 106, 107, 0, 49, 64, 67, 50, 0, 0,
0, 0, 45, 0, 80, 0, 81, 0, 0, 56,
2015-01-16 13:48:20 +00:00
68, 0, 0, 0, 156, 0, 0, 0, 70, 0,
2014-08-07 15:13:55 +00:00
69, 22, 0, 0, 24, 0, 18, 0, 54, 0,
52, 0, 65, 79, 78, 0, 0, 0, 0, 0,
34, 0, 0, 0, 77, 21, 0, 0, 33, 0,
0, 0, 31, 0, 82, 0, 0, 0, 113, 0,
0, 132, 0, 142, 96, 0, 134, 46, 57, 0,
93, 91, 0, 0, 0, 0, 0, 0, 0, 0,
2014-08-07 15:13:55 +00:00
0, 0, 0, 0, 83, 26, 51, 29, 53, 66,
0, 86, 0, 55, 43, 44, 73, 74, 23, 0,
25, 35, 111, 0, 108, 0, 0, 0, 0, 0,
262, 266, 268, 267, 263, 269, 264, 265, 0, 0,
0, 196, 97, 0, 0, 140, 0, 0, 179, 0,
157, 0, 0, 253, 250, 0, 0, 256, 0, 207,
208, 0, 0, 181, 167, 143, 158, 170, 171, 168,
169, 180, 182, 206, 0, 0, 172, 125, 151, 160,
0, 145, 0, 0, 89, 0, 0, 0, 0, 149,
0, 164, 141, 0, 254, 0, 0, 0, 0, 0,
0, 245, 286, 0, 0, 276, 0, 0, 0, 0,
0, 0, 0, 194, 173, 87, 241, 242, 248, 249,
174, 195, 255, 259, 99, 0, 119, 94, 90, 0,
0, 0, 135, 0, 0, 84, 101, 0, 0, 0,
27, 0, 0, 0, 198, 0, 0, 0, 0, 229,
230, 219, 0, 0, 0, 98, 144, 166, 216, 0,
0, 231, 232, 197, 227, 228, 224, 225, 226, 223,
0, 159, 0, 152, 114, 129, 120, 92, 0, 0,
0, 243, 244, 258, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 100, 126, 0, 0, 121, 95, 103, 102, 0,
0, 112, 0, 0, 0, 199, 0, 161, 0, 0,
220, 233, 0, 217, 221, 218, 0, 204, 205, 146,
150, 0, 0, 287, 288, 289, 0, 0, 281, 279,
280, 277, 278, 0, 0, 0, 0, 0, 0, 0,
130, 122, 104, 0, 0, 0, 0, 0, 147, 0,
0, 0, 234, 0, 237, 0, 270, 85, 0, 0,
0, 0, 0, 0, 0, 0, 183, 0, 202, 201,
162, 148, 185, 235, 0, 238, 193, 0, 0, 0,
0, 0, 0, 0, 0, 0, 236, 192, 191, 0,
190, 0, 0, 0, 0, 0, 184, 189, 188, 187,
0, 0, 0, 186, 0, 213, 0, 212,
2014-07-09 08:52:23 +00:00
};
protected static final short yyDgoto [] = { 15,
2014-08-07 15:13:55 +00:00
16, 17, 68, 122, 123, 124, 59, 35, 40, 125,
94, 95, 96, 97, 98, 99, 100, 101, 215, 103,
216, 105, 18, 19, 37, 20, 21, 270, 60, 85,
23, 88, 61, 69, 24, 25, 26, 27, 261, 218,
29, 30, 219, 155, 220, 395, 221, 222, 157, 252,
323, 223, 224, 225, 226, 271, 272, 273, 274, 275,
276, 277, 278, 279, 280, 281, 282, 283, 284, 285,
228, 388, 229, 287, 288, 289, 290, 234, 0, 235,
236, 237, 448, 238, 239, 449, 240, 241, 450, 242,
243, 291, 31, 82, 83, 194, 150, 84, 32, 292,
341, 330, 245, 389, 293, 33, 109, 110, 175, 247,
111, 294, 0, 73, 45, 74,
2014-07-09 08:52:23 +00:00
};
protected static final short yySindex [] = { 2662,
0, 0, 0, -274, 0, 0, 0, 0, 0, -187,
-187, -145, 0, 0, 0, 0, 0, 0, 0, 0,
581, 366, 0, 0, 0, 104, 116, -60, 898, 0,
1166, 581, 0, 170, -106, 15, 177, 194, 204, -80,
0, 1166, -24, 53, 0, 195, 208, 2662, -274, -145,
0, 0, 581, 1166, 11, -187, -187, 1982, 0, -97,
-13, 0, 0, -12, 11, -187, 2544, 0, 36, 0,
-221, 0, 165, 0, 0, 0, 0, -106, -80, 1166,
81, 0, 0, 173, 0, 0, 0, 0, 232, 95,
282, 11, 0, 262, 0, 232, 0, 159, 2574, 0,
0, 190, 315, 400, 0, 423, 167, 1219, 0, 347,
0, 0, -13, -187, 0, 0, 0, 222, 0, 282,
0, 2604, 0, 0, 0, 262, 414, 95, 1219, -187,
0, -187, -187, 53, 0, 0, -97, -13, 0, 36,
-187, 11, 0, 2159, 0, 282, 159, -19, 0, 258,
95, 0, 167, 0, 0, -187, 0, 0, 0, 187,
0, 0, 976, -16, 282, 159, 355, 433, 95, 320,
159, 167, 347, 2203, 0, 0, 0, 0, 0, 0,
95, 0, 193, 0, 0, 0, 0, 0, 0, -13,
0, 0, 0, 457, 0, 456, 461, 434, 463, 465,
0, 0, 0, 0, 0, 0, 0, 0, 0, 768,
768, 0, 0, 13, 453, 0, 29, 187, 0, 2247,
0, 452, 189, 0, 0, 470, -85, 0, 458, 0,
2014-08-07 15:13:55 +00:00
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 21, 0, 0, 0, 0, 0,
187, 0, 67, 11, 0, 159, 159, 460, 400, 0,
479, 0, 0, -187, 0, 13, 768, 768, 768, 61,
-85, 0, 0, 395, 421, 0, -53, -102, 487, 432,
407, 230, 236, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 188, 0, 0, 0, 159,
95, 95, 0, 159, 364, 0, 0, 2291, 2353, 64,
0, -187, 525, 976, 0, 484, 577, 976, 61, 0,
0, 0, 277, 621, 453, 0, 0, 0, 0, 705,
237, 0, 0, 0, 0, 0, 0, 0, 0, 0,
976, 0, 143, 0, 0, 0, 0, 0, -187, 505,
-6, 0, 0, 0, 768, 768, 768, 768, 768, -187,
768, 768, 768, 768, 768, 768, 768, 768, 768, 768,
768, 0, 0, 159, 159, 0, 0, 0, 0, 2410,
976, 0, 733, 489, 508, 0, 491, 0, 402, 510,
0, 0, 409, 0, 0, 0, 512, 0, 0, 0,
0, 750, 768, 0, 0, 0, 395, 395, 0, 0,
0, 0, 0, -53, -53, -102, 487, 432, 407, 230,
0, 0, 0, 495, 796, 500, 823, 2449, 0, 976,
503, 2491, 0, 850, 0, 411, 0, 0, 2491, 526,
891, 908, 507, 532, 533, 0, 0, 307, 0, 0,
0, 0, 0, 0, 418, 0, 0, 2491, 2491, 534,
2491, 535, 938, 976, 976, 2491, 0, 0, 0, 2491,
0, 2491, 2491, 536, 539, 540, 0, 0, 0, 0,
2491, 2449, 2449, 0, 316, 0, 2449, 0,
2014-07-09 08:52:23 +00:00
};
protected static final short yyRindex [] = { 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 1249, 0, 0, 0, 1068, 1708, 0, 0, 0,
586, 0, 0, -100, 0, 0, 0, 0, -79, 0,
0, 587, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 588, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
261, 0, 0, 0, 0, 0, 0, 0, 0, 592,
285, 0, 0, 0, 0, 0, 0, 0, 2632, 0,
-8, 0, 0, 0, 0, 0, 0, -20, 0, 0,
0, 0, 0, 392, 0, -5, 0, 0, 0, 0,
0, 0, 0, 0, 0, 25, 0, 0, 0, 2,
2014-07-09 08:52:23 +00:00
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, 54, 0, 0, 0,
2014-07-09 08:52:23 +00:00
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 341, 60, 0, 0, 0, 0,
63, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2014-07-09 08:52:23 +00:00
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 289, 0, 0, 0, 0, -28, 0,
0, 0, 0, 0, 0, 0, 0, 0, 213, 0,
0, 0, 0, 0, 537, 0, 448, 0, 0, 0,
0, 0, 0, 0, 0, 1262, 0, 0, 0, 0,
0, -17, -9, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, -46, 0, 0, 0, 0,
0, 0, 0, 0, 0, 73, 82, 0, 538, 0,
85, 0, 0, 0, 0, 0, 0, 0, 0, 653,
2122, 0, 0, 1972, 1778, 0, 1807, 1844, 1273, 1316,
1357, 1368, 1423, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 99,
0, 0, 0, 105, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 1554, 0,
0, 0, 0, 0, 544, 0, 0, 0, 0, 0,
2014-07-09 08:52:23 +00:00
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
294, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2014-07-09 08:52:23 +00:00
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 110, 133, 0, 0, 0, 0, 0,
2014-07-09 08:52:23 +00:00
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, 1995, 2032, 0, 0,
0, 0, 0, 1833, 1899, 1870, 1591, 1645, 1696, 1741,
2014-07-09 08:52:23 +00:00
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, 2090, 0, 0, 0, 0,
2014-07-09 08:52:23 +00:00
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, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
2014-07-09 08:52:23 +00:00
};
protected static final short yyGindex [] = { 558,
0, 0, -23, 0, 485, 0, 16, 560, 562, 0,
123, 0, 30, 0, 2225, 0, 517, 0, -34, -47,
41, -127, 295, 0, 0, 45, 591, 1, 546, -152,
-51, 6, 10, 547, 0, 0, 359, -113, 0, 541,
88, 52, -86, 0, -158, 0, 0, 0, 344, 286,
-27, 0, 0, 0, 0, -142, 0, -177, 28, 0,
14, 119, 263, 260, 264, 266, 268, 0, 0, 291,
0, -35, 0, -48, -1, 17, 74, 0, 0, -94,
-206, 2136, -67, 0, 0, 0, 0, 0, 0, 0,
0, 293, 172, -84, 499, 0, 0, 572, 0, 132,
0, 0, 0, -284, 199, 367, 0, 542, 469, 471,
0, 0, 0, 0, 0, 509,
2014-08-07 15:13:55 +00:00
};
protected static final short yyTable [] = { 255,
22, 227, 145, 260, 86, 87, 363, 149, 364, 154,
36, 38, 211, 327, 87, 308, 58, 254, 185, 186,
250, 249, 30, 102, 295, 58, 34, 193, 22, 117,
114, 227, 320, 321, 403, 164, 250, 19, 131, 393,
13, 209, 67, 28, 22, 131, 132, 19, 22, 210,
164, 19, 164, 322, 13, 139, 22, 22, 22, 168,
43, 19, 87, 133, 102, 41, 22, 22, 324, 113,
16, 119, 167, 62, 43, 112, 115, 227, 87, 130,
51, 340, 19, 17, 46, 13, 250, 138, 44, 352,
353, 354, 19, 136, 22, 230, 127, 41, 104, 22,
324, 327, 131, 148, 86, 258, 43, 344, 22, 58,
343, 350, 123, 14, 22, 71, 192, 436, 116, 177,
253, 133, 22, 342, 381, 230, 22, 286, 176, 22,
22, 127, 22, 22, 22, 184, 296, 305, 250, 104,
115, 22, 231, 105, 217, 108, 190, 104, 22, 455,
380, 127, 189, 191, 129, 39, 22, 124, 67, 51,
232, 56, 316, 117, 22, 227, 227, 30, 128, 345,
22, 230, 231, 327, 217, 57, 123, 404, 405, 406,
51, 30, 116, 325, 57, 133, 108, 66, 28, 126,
232, 118, 42, 259, 46, 127, 401, 2, 382, 365,
263, 3, 366, 54, 115, 311, 47, 105, 134, 129,
319, 319, 86, 6, 22, 250, 142, 233, 231, 360,
217, 124, 332, 333, 80, 437, 135, 117, 372, 55,
170, 343, 128, 160, 143, 63, 232, 227, 2, 64,
14, 2, 3, 394, 126, 3, 409, 233, 161, 361,
362, 170, 19, 164, 6, 118, 164, 6, 19, 230,
230, 255, 255, 65, 22, 142, 22, 319, 319, 319,
2, 164, 19, 19, 3, 244, 70, 384, 385, 254,
254, 209, 390, 178, 209, 227, 6, 75, 116, 227,
248, 248, 19, 233, 396, 13, 227, 86, 249, 249,
76, 254, 19, 19, 42, 244, 231, 231, 217, 217,
2, 81, 22, 209, 3, 227, 227, 391, 227, 255,
343, 148, 42, 227, 232, 232, 6, 227, 109, 227,
227, 230, 110, 446, 335, 336, 337, 338, 227, 227,
227, 339, 246, 22, 227, 424, 109, 426, 141, 22,
110, 244, 106, 14, 144, 319, 319, 319, 319, 319,
22, 319, 319, 319, 319, 319, 319, 319, 319, 319,
319, 319, 246, 162, 410, 411, 412, 413, 231, 230,
217, 233, 233, 230, 164, 407, 408, 446, 446, 440,
230, 443, 446, 106, 451, 146, 232, 52, 160, 164,
2, 164, 106, 319, 3, 460, 462, 160, 52, 230,
230, 43, 230, 298, 485, 486, 6, 230, 246, 488,
52, 230, 377, 230, 230, 44, 231, 474, 475, 476,
231, 357, 230, 230, 230, 140, 355, 231, 230, 244,
244, 356, 431, 209, 232, 430, 52, 156, 232, 433,
88, 456, 430, 233, 430, 232, 231, 231, 467, 231,
163, 430, 164, 358, 231, 359, 269, 165, 231, 174,
231, 231, 182, 266, 232, 232, 267, 232, 268, 231,
231, 231, 232, 414, 415, 231, 232, 262, 232, 232,
248, 299, 315, 310, 312, 313, 160, 232, 232, 232,
314, 233, 317, 232, 318, 233, 246, 246, 222, 297,
328, 244, 233, 19, 303, 331, 334, 329, 348, 2,
19, 19, 349, 3, 367, 368, 19, 19, 19, 19,
369, 233, 233, 19, 233, 6, 370, 397, 76, 233,
28, 371, 386, 233, 402, 233, 233, 427, 428, 429,
432, 434, 151, 438, 233, 233, 233, 269, 441, 244,
233, 452, 120, 244, 266, 463, 458, 267, 48, 268,
244, 464, 465, 466, 470, 472, 481, 2, 246, 482,
483, 3, 487, 383, 72, 1, 2, 4, 28, 244,
244, 3, 244, 6, 136, 178, 88, 244, 107, 346,
347, 244, 177, 244, 244, 77, 180, 128, 78, 269,
301, 79, 244, 244, 244, 159, 266, 387, 244, 267,
14, 268, 53, 137, 351, 140, 246, 417, 400, 416,
246, 398, 418, 399, 153, 419, 118, 246, 420, 107,
195, 306, 188, 373, 309, 0, 0, 376, 172, 173,
0, 0, 0, 269, 0, 0, 246, 246, 0, 246,
266, 392, 128, 267, 246, 268, 181, 0, 246, 183,
246, 246, 0, 0, 187, 0, 0, 0, 0, 246,
246, 246, 0, 0, 0, 246, 0, 0, 251, 247,
247, 0, 0, 247, 247, 247, 247, 247, 0, 247,
0, 0, 0, 0, 251, 0, 0, 0, 264, 0,
302, 247, 247, 222, 247, 0, 0, 421, 422, 0,
265, 0, 0, 0, 0, 0, 201, 202, 203, 204,
205, 206, 207, 208, 14, 0, 0, 269, 0, 0,
0, 210, 211, 0, 266, 0, 247, 267, 76, 268,
0, 0, 0, 0, 251, 247, 247, 0, 0, 0,
0, 222, 222, 222, 222, 269, 0, 0, 222, 0,
0, 0, 266, 0, 0, 267, 247, 268, 0, 0,
0, 0, 269, 0, 0, 0, 0, 0, 0, 266,
435, 425, 267, 0, 268, 0, 0, 0, 0, 264,
269, 0, 0, 0, 0, 0, 251, 266, 0, 0,
267, 265, 268, 0, 0, 0, 0, 201, 202, 203,
204, 205, 206, 207, 208, 14, 0, 144, 269, 0,
0, 0, 210, 211, 0, 266, 439, 1, 267, 0,
268, 0, 0, 4, 0, 0, 0, 0, 0, 5,
0, 264, 0, 0, 0, 269, 7, 8, 9, 0,
11, 12, 266, 265, 13, 267, 0, 268, 0, 201,
202, 203, 204, 205, 206, 207, 208, 14, 0, 0,
0, 442, 269, 251, 210, 211, 0, 0, 0, 266,
454, 0, 267, 0, 268, 264, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 265, 0, 0,
0, 0, 0, 201, 202, 203, 204, 205, 206, 207,
208, 14, 0, 269, 0, 247, 0, 0, 210, 211,
266, 459, 0, 267, 0, 268, 0, 0, 0, 0,
269, 0, 0, 0, 0, 0, 0, 266, 461, 0,
267, 0, 268, 0, 247, 247, 247, 247, 247, 247,
247, 247, 0, 0, 0, 0, 222, 222, 222, 222,
269, 0, 0, 222, 0, 0, 0, 266, 473, 264,
267, 0, 268, 0, 0, 0, 0, 0, 0, 0,
0, 265, 0, 0, 0, 0, 0, 201, 202, 203,
204, 205, 206, 207, 208, 14, 0, 264, 269, 0,
0, 0, 210, 211, 0, 266, 0, 0, 267, 265,
268, 0, 0, 0, 264, 201, 202, 203, 204, 205,
206, 207, 208, 14, 0, 0, 265, 0, 0, 0,
2014-08-07 15:13:55 +00:00
210, 211, 201, 202, 203, 204, 205, 206, 207, 208,
14, 0, 0, 0, 265, 0, 0, 210, 211, 0,
2014-08-07 15:13:55 +00:00
201, 202, 203, 204, 205, 206, 207, 208, 14, 0,
264, 0, 0, 0, 0, 210, 211, 0, 0, 0,
0, 0, 265, 0, 0, 0, 0, 0, 201, 202,
203, 204, 205, 206, 207, 208, 14, 264, 0, 0,
0, 0, 0, 210, 211, 0, 0, 0, 0, 265,
0, 136, 0, 0, 0, 201, 202, 203, 204, 205,
206, 207, 208, 14, 264, 0, 0, 0, 0, 136,
210, 211, 0, 0, 0, 0, 265, 0, 0, 0,
2014-08-07 15:13:55 +00:00
0, 0, 201, 202, 203, 204, 205, 206, 207, 208,
14, 0, 0, 0, 1, 0, 0, 210, 211, 0,
49, 0, 0, 0, 0, 264, 5, 0, 0, 0,
0, 0, 0, 7, 8, 9, 0, 265, 50, 0,
0, 13, 264, 201, 202, 203, 204, 205, 206, 207,
208, 14, 0, 0, 265, 0, 0, 0, 210, 211,
201, 202, 203, 204, 205, 206, 207, 208, 14, 0,
0, 0, 264, 0, 0, 210, 211, 0, 0, 0,
0, 0, 0, 0, 265, 0, 0, 0, 0, 0,
201, 202, 203, 204, 205, 206, 207, 208, 14, 0,
0, 0, 0, 0, 0, 210, 211, 0, 0, 0,
264, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 265, 0, 0, 0, 0, 0, 201, 202,
203, 204, 205, 206, 207, 208, 14, 0, 92, 0,
0, 0, 0, 210, 211, 76, 76, 0, 76, 76,
76, 76, 76, 76, 0, 76, 0, 0, 246, 246,
0, 0, 246, 246, 246, 246, 246, 76, 246, 260,
76, 0, 0, 260, 260, 260, 260, 260, 260, 260,
246, 246, 0, 246, 136, 136, 0, 0, 0, 136,
136, 260, 260, 0, 260, 0, 136, 0, 0, 76,
0, 136, 76, 136, 136, 136, 136, 136, 136, 0,
0, 136, 251, 251, 0, 246, 251, 251, 251, 251,
251, 251, 251, 0, 0, 0, 260, 0, 136, 0,
0, 76, 76, 0, 251, 251, 0, 251, 0, 0,
0, 0, 0, 0, 0, 246, 0, 0, 0, 0,
0, 0, 0, 239, 239, 0, 260, 239, 239, 239,
239, 239, 239, 239, 214, 214, 0, 0, 214, 214,
214, 214, 214, 214, 214, 239, 239, 0, 239, 0,
0, 0, 1, 0, 0, 0, 214, 214, 4, 214,
0, 0, 0, 0, 5, 0, 0, 0, 0, 251,
0, 7, 8, 9, 0, 0, 12, 0, 0, 13,
239, 0, 0, 0, 0, 0, 0, 0, 0, 203,
203, 214, 0, 203, 203, 203, 203, 203, 203, 203,
0, 0, 0, 0, 0, 1, 2, 0, 0, 0,
3, 203, 203, 0, 203, 0, 0, 5, 0, 0,
0, 214, 6, 0, 7, 8, 9, 0, 0, 0,
0, 0, 13, 0, 0, 76, 76, 0, 0, 169,
76, 76, 0, 0, 0, 0, 203, 76, 0, 120,
0, 76, 76, 0, 76, 76, 76, 76, 76, 76,
76, 0, 76, 0, 246, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 260, 203, 0, 0, 76,
76, 76, 76, 76, 76, 76, 76, 76, 0, 0,
0, 0, 0, 246, 246, 246, 246, 246, 246, 246,
246, 0, 0, 0, 260, 260, 260, 260, 260, 260,
260, 260, 0, 0, 0, 0, 0, 0, 251, 0,
247, 247, 0, 0, 247, 247, 247, 247, 247, 0,
247, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 247, 247, 0, 247, 0, 251, 251, 251,
251, 251, 251, 251, 251, 0, 0, 261, 0, 239,
0, 261, 261, 261, 261, 261, 261, 261, 0, 0,
214, 0, 0, 0, 0, 0, 0, 247, 0, 261,
261, 0, 261, 0, 0, 0, 0, 0, 239, 239,
239, 239, 239, 239, 239, 239, 0, 0, 0, 214,
214, 214, 214, 214, 0, 214, 214, 247, 0, 0,
0, 252, 252, 0, 261, 252, 252, 252, 252, 252,
252, 252, 0, 0, 0, 203, 0, 0, 0, 0,
0, 0, 0, 252, 252, 0, 252, 0, 0, 0,
0, 0, 0, 0, 261, 0, 0, 0, 0, 0,
0, 0, 0, 0, 203, 203, 203, 203, 0, 203,
203, 203, 240, 240, 0, 0, 240, 240, 240, 240,
240, 240, 240, 0, 0, 0, 0, 0, 0, 0,
0, 138, 0, 0, 240, 240, 0, 240, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 252, 138,
0, 0, 0, 0, 0, 0, 0, 215, 215, 0,
0, 215, 215, 215, 215, 215, 215, 215, 0, 240,
0, 0, 0, 0, 0, 0, 0, 0, 0, 215,
215, 0, 215, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 282, 282, 0, 0, 282, 282,
0, 282, 0, 282, 282, 0, 247, 0, 0, 0,
0, 0, 0, 0, 215, 0, 282, 282, 0, 282,
0, 0, 0, 273, 273, 0, 0, 273, 273, 273,
273, 273, 273, 273, 0, 247, 247, 247, 247, 247,
247, 247, 247, 261, 215, 273, 0, 0, 0, 274,
274, 282, 0, 274, 274, 274, 274, 274, 274, 274,
2015-01-16 13:48:20 +00:00
271, 271, 0, 0, 271, 271, 271, 271, 271, 271,
271, 274, 261, 261, 261, 261, 261, 261, 261, 261,
273, 282, 271, 271, 0, 271, 272, 272, 0, 0,
272, 272, 272, 272, 272, 272, 272, 252, 0, 0,
0, 0, 0, 0, 0, 0, 274, 0, 272, 272,
273, 272, 0, 0, 0, 275, 275, 271, 0, 275,
275, 275, 275, 275, 275, 275, 252, 252, 252, 252,
252, 252, 252, 252, 0, 0, 274, 275, 0, 0,
0, 0, 0, 272, 138, 138, 0, 271, 240, 138,
138, 0, 0, 0, 0, 0, 138, 0, 0, 0,
0, 138, 0, 138, 138, 138, 138, 138, 138, 0,
0, 138, 275, 272, 0, 0, 0, 240, 240, 240,
240, 240, 240, 240, 240, 0, 0, 0, 138, 283,
0, 0, 283, 215, 283, 283, 283, 283, 0, 0,
0, 0, 275, 0, 0, 0, 0, 0, 0, 0,
283, 283, 284, 283, 0, 284, 0, 284, 284, 284,
284, 92, 215, 215, 215, 215, 215, 0, 215, 215,
282, 0, 0, 284, 284, 0, 284, 0, 0, 0,
0, 0, 0, 0, 0, 283, 0, 0, 0, 285,
0, 0, 285, 0, 285, 285, 285, 285, 0, 282,
282, 282, 282, 282, 282, 282, 282, 0, 284, 0,
285, 285, 0, 285, 0, 283, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 93, 0, 273, 0,
0, 273, 273, 273, 273, 273, 271, 0, 284, 0,
0, 0, 0, 0, 0, 285, 0, 0, 0, 167,
0, 0, 0, 0, 274, 0, 0, 274, 274, 274,
274, 274, 272, 0, 0, 0, 271, 271, 167, 271,
271, 271, 271, 0, 0, 285, 0, 0, 257, 257,
0, 0, 257, 257, 257, 257, 257, 257, 257, 0,
0, 0, 272, 272, 0, 272, 272, 272, 272, 0,
257, 257, 0, 257, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 214, 0,
275, 0, 0, 275, 275, 275, 275, 275, 0, 0,
0, 0, 167, 0, 167, 257, 0, 212, 0, 0,
2014-08-07 15:13:55 +00:00
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 1, 2,
0, 0, 214, 3, 283, 257, 0, 0, 0, 0,
5, 0, 0, 0, 0, 6, 0, 7, 8, 9,
0, 212, 0, 0, 0, 89, 0, 284, 0, 0,
2015-01-16 13:48:20 +00:00
0, 0, 90, 283, 283, 283, 283, 283, 283, 283,
283, 144, 91, 213, 0, 0, 214, 0, 0, 0,
0, 0, 0, 0, 0, 0, 284, 284, 284, 284,
284, 284, 284, 284, 285, 212, 0, 0, 0, 0,
0, 0, 0, 0, 147, 0, 0, 0, 152, 0,
0, 0, 0, 0, 0, 144, 0, 307, 0, 0,
214, 166, 171, 285, 285, 285, 285, 285, 285, 285,
285, 0, 0, 0, 0, 0, 0, 167, 0, 212,
152, 167, 166, 171, 0, 0, 200, 0, 0, 0,
167, 167, 0, 167, 0, 0, 0, 0, 0, 144,
0, 326, 167, 0, 0, 256, 167, 257, 0, 0,
0, 167, 167, 167, 167, 167, 167, 167, 167, 167,
167, 0, 214, 300, 257, 0, 304, 167, 167, 0,
0, 0, 0, 0, 0, 257, 0, 304, 0, 0,
0, 212, 0, 144, 0, 378, 2, 0, 0, 0,
3, 0, 0, 257, 257, 257, 257, 257, 257, 196,
197, 0, 6, 0, 0, 0, 0, 0, 0, 0,
0, 198, 0, 0, 0, 199, 0, 0, 0, 214,
2014-08-07 15:13:55 +00:00
200, 201, 202, 203, 204, 205, 206, 207, 208, 209,
2, 0, 0, 0, 3, 0, 210, 211, 212, 0,
0, 0, 0, 196, 197, 144, 6, 379, 0, 0,
0, 0, 0, 0, 0, 198, 0, 0, 214, 199,
0, 0, 0, 0, 200, 201, 202, 203, 204, 205,
206, 207, 208, 209, 2, 0, 0, 212, 3, 0,
210, 211, 0, 0, 0, 0, 0, 196, 197, 0,
6, 0, 0, 0, 0, 374, 375, 0, 0, 198,
214, 0, 144, 199, 423, 0, 0, 0, 200, 201,
202, 203, 204, 205, 206, 207, 208, 209, 2, 212,
0, 0, 3, 0, 210, 211, 0, 0, 0, 0,
0, 196, 197, 447, 6, 0, 0, 453, 0, 0,
0, 144, 0, 198, 457, 0, 0, 199, 0, 0,
0, 0, 200, 201, 202, 203, 204, 205, 206, 207,
208, 209, 0, 468, 469, 0, 471, 0, 210, 211,
0, 477, 0, 92, 0, 478, 0, 479, 480, 0,
2, 0, 0, 144, 3, 0, 484, 447, 453, 0,
0, 0, 477, 196, 197, 0, 6, 0, 0, 0,
0, 0, 0, 92, 0, 198, 0, 0, 0, 199,
0, 0, 0, 0, 200, 201, 202, 203, 204, 205,
206, 207, 208, 209, 0, 0, 0, 0, 0, 0,
210, 211, 0, 92, 0, 0, 0, 2, 121, 0,
0, 3, 0, 0, 0, 0, 0, 0, 0, 0,
196, 197, 0, 6, 0, 0, 0, 0, 0, 0,
0, 61, 198, 0, 0, 0, 199, 0, 158, 0,
2014-08-07 15:13:55 +00:00
0, 200, 201, 202, 203, 204, 205, 206, 207, 208,
209, 0, 0, 0, 0, 0, 0, 210, 211, 196,
444, 0, 0, 0, 0, 0, 0, 0, 179, 0,
0, 198, 0, 0, 0, 199, 0, 0, 0, 0,
445, 201, 202, 203, 204, 205, 206, 207, 208, 14,
0, 0, 0, 0, 0, 0, 210, 211, 0, 0,
0, 196, 197, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 198, 0, 0, 0, 199, 0, 0,
0, 0, 200, 201, 202, 203, 204, 205, 206, 207,
208, 14, 0, 0, 0, 0, 0, 0, 210, 211,
1, 2, 0, 0, 0, 3, 0, 0, 0, 0,
0, 0, 5, 0, 0, 0, 0, 6, 0, 7,
8, 9, 0, 0, 0, 0, 0, 13, 0, 0,
1, 2, 0, 0, 90, 3, 0, 0, 0, 0,
0, 0, 5, 0, 120, 0, 0, 6, 0, 7,
8, 9, 0, 0, 0, 0, 0, 89, 0, 0,
1, 2, 0, 0, 90, 3, 0, 0, 0, 0,
0, 0, 5, 0, 91, 0, 0, 6, 0, 7,
8, 9, 0, 0, 0, 0, 0, 13, 61, 61,
0, 0, 0, 61, 90, 0, 0, 0, 0, 0,
61, 0, 0, 0, 120, 61, 0, 61, 61, 61,
0, 0, 0, 0, 0, 61, 0, 0, 1, 2,
0, 0, 61, 3, 4, 0, 0, 0, 0, 0,
5, 0, 61, 0, 0, 6, 0, 7, 8, 9,
10, 11, 12, 0, 0, 13, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 14,
2014-07-09 08:52:23 +00:00
};
protected short yyCheck[] = new short[2964];
2014-07-09 08:52:23 +00:00
}
class yyCheck0 {
protected static final short yyCheck0 [] = { 46,
0, 144, 89, 156, 56, 57, 60, 92, 62, 96,
10, 11, 59, 220, 66, 174, 123, 46, 132, 133,
148, 41, 123, 58, 41, 123, 301, 141, 28, 42,
44, 174, 210, 211, 41, 44, 164, 46, 59, 324,
46, 59, 123, 123, 44, 69, 268, 46, 48, 59,
59, 60, 61, 41, 60, 79, 56, 57, 58, 107,
46, 60, 114, 285, 99, 21, 66, 67, 40, 60,
46, 66, 107, 59, 46, 60, 61, 220, 130, 44,
29, 61, 91, 59, 91, 91, 214, 78, 60, 267,
268, 269, 91, 78, 94, 144, 67, 53, 58, 99,
40, 308, 123, 40, 156, 153, 46, 41, 108, 123,
44, 264, 59, 301, 114, 63, 140, 402, 59, 114,
148, 59, 122, 251, 61, 174, 126, 163, 113, 129,
130, 59, 132, 133, 134, 130, 164, 172, 266, 99,
59, 141, 144, 59, 144, 58, 137, 107, 148, 434,
309, 122, 137, 138, 67, 301, 156, 59, 123, 108,
144, 268, 198, 59, 164, 308, 309, 268, 59, 254,
170, 220, 174, 380, 174, 282, 123, 355, 356, 357,
129, 282, 123, 218, 282, 123, 99, 268, 268, 67,
174, 59, 21, 153, 91, 123, 349, 258, 312, 302,
160, 262, 305, 32, 123, 190, 91, 123, 44, 122,
210, 211, 264, 274, 214, 343, 44, 144, 220, 273,
220, 123, 308, 309, 53, 403, 62, 123, 41, 60,
108, 44, 123, 44, 62, 59, 220, 380, 258, 46,
301, 258, 262, 330, 122, 262, 360, 174, 59, 303,
304, 129, 40, 41, 274, 123, 44, 274, 46, 308,
309, 308, 309, 60, 264, 44, 266, 267, 268, 269,
258, 59, 60, 61, 262, 144, 301, 313, 314, 308,
309, 301, 318, 62, 301, 428, 274, 93, 301, 432,
308, 309, 301, 220, 330, 301, 439, 349, 308, 309,
93, 44, 301, 91, 44, 174, 308, 309, 308, 309,
258, 301, 312, 301, 262, 458, 459, 41, 461, 62,
44, 40, 62, 466, 308, 309, 274, 470, 44, 472,
473, 380, 44, 428, 314, 315, 316, 317, 481, 482,
483, 321, 144, 343, 487, 381, 62, 383, 268, 349,
62, 220, 58, 301, 123, 355, 356, 357, 358, 359,
2014-08-07 15:13:55 +00:00
360, 361, 362, 363, 364, 365, 366, 367, 368, 369,
370, 371, 174, 59, 361, 362, 363, 364, 380, 428,
380, 308, 309, 432, 44, 358, 359, 482, 483, 425,
439, 427, 487, 99, 430, 301, 380, 31, 44, 59,
258, 61, 108, 403, 262, 441, 442, 44, 42, 458,
459, 46, 461, 59, 482, 483, 274, 466, 220, 487,
54, 470, 59, 472, 473, 60, 428, 463, 464, 465,
432, 37, 481, 482, 483, 44, 42, 439, 487, 308,
309, 47, 41, 301, 428, 44, 80, 289, 432, 41,
59, 41, 44, 380, 44, 439, 458, 459, 41, 461,
61, 44, 40, 43, 466, 45, 33, 301, 470, 123,
472, 473, 59, 40, 458, 459, 43, 461, 45, 481,
482, 483, 466, 365, 366, 487, 470, 301, 472, 473,
147, 59, 59, 301, 38, 40, 44, 481, 482, 483,
40, 428, 40, 487, 40, 432, 308, 309, 61, 166,
59, 380, 439, 301, 171, 46, 59, 329, 59, 258,
308, 309, 44, 262, 38, 94, 314, 315, 316, 317,
124, 458, 459, 321, 461, 274, 307, 301, 91, 466,
0, 306, 59, 470, 40, 472, 473, 59, 41, 59,
41, 40, 291, 59, 481, 482, 483, 33, 59, 428,
487, 59, 301, 432, 40, 59, 41, 43, 28, 45,
439, 40, 40, 267, 41, 41, 41, 258, 380, 41,
41, 262, 267, 59, 44, 0, 0, 0, 48, 458,
459, 0, 461, 274, 301, 59, 59, 466, 58, 256,
257, 470, 59, 472, 473, 48, 122, 67, 49, 33,
291, 50, 481, 482, 483, 99, 40, 41, 487, 43,
301, 45, 32, 78, 266, 79, 428, 368, 343, 367,
432, 341, 369, 341, 94, 370, 65, 439, 371, 99,
142, 173, 134, 300, 174, -1, -1, 304, 108, 108,
-1, -1, -1, 33, -1, -1, 458, 459, -1, 461,
40, 41, 122, 43, 466, 45, 126, -1, 470, 129,
472, 473, -1, -1, 134, -1, -1, -1, -1, 481,
482, 483, -1, -1, -1, 487, -1, -1, 148, 37,
38, -1, -1, 41, 42, 43, 44, 45, -1, 47,
-1, -1, -1, -1, 164, -1, -1, -1, 275, -1,
170, 59, 60, 61, 62, -1, -1, 374, 375, -1,
2014-08-07 15:13:55 +00:00
287, -1, -1, -1, -1, -1, 293, 294, 295, 296,
297, 298, 299, 300, 301, -1, -1, 33, -1, -1,
-1, 308, 309, -1, 40, -1, 94, 43, 301, 45,
-1, -1, -1, -1, 214, 308, 309, -1, -1, -1,
-1, 314, 315, 316, 317, 33, -1, -1, 321, -1,
-1, -1, 40, -1, -1, 43, 124, 45, -1, -1,
-1, -1, 33, -1, -1, -1, -1, -1, -1, 40,
41, 59, 43, -1, 45, -1, -1, -1, -1, 275,
33, -1, -1, -1, -1, -1, 266, 40, -1, -1,
43, 287, 45, -1, -1, -1, -1, 293, 294, 295,
296, 297, 298, 299, 300, 301, -1, 123, 33, -1,
-1, -1, 308, 309, -1, 40, 41, 257, 43, -1,
45, -1, -1, 263, -1, -1, -1, -1, -1, 269,
-1, 275, -1, -1, -1, 33, 276, 277, 278, -1,
280, 281, 40, 287, 284, 43, -1, 45, -1, 293,
294, 295, 296, 297, 298, 299, 300, 301, -1, -1,
-1, 59, 33, 343, 308, 309, -1, -1, -1, 40,
41, -1, 43, -1, 45, 275, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 287, -1, -1,
-1, -1, -1, 293, 294, 295, 296, 297, 298, 299,
300, 301, -1, 33, -1, 273, -1, -1, 308, 309,
40, 41, -1, 43, -1, 45, -1, -1, -1, -1,
33, -1, -1, -1, -1, -1, -1, 40, 41, -1,
43, -1, 45, -1, 302, 303, 304, 305, 306, 307,
308, 309, -1, -1, -1, -1, 314, 315, 316, 317,
33, -1, -1, 321, -1, -1, -1, 40, 41, 275,
43, -1, 45, -1, -1, -1, -1, -1, -1, -1,
-1, 287, -1, -1, -1, -1, -1, 293, 294, 295,
2014-07-09 08:52:23 +00:00
};
}
class yyCheck1 {
protected static final short yyCheck1 [] = { 296,
297, 298, 299, 300, 301, -1, 275, 33, -1, -1,
-1, 308, 309, -1, 40, -1, -1, 43, 287, 45,
-1, -1, -1, 275, 293, 294, 295, 296, 297, 298,
299, 300, 301, -1, -1, 287, -1, -1, -1, 308,
309, 293, 294, 295, 296, 297, 298, 299, 300, 301,
-1, -1, -1, 287, -1, -1, 308, 309, -1, 293,
294, 295, 296, 297, 298, 299, 300, 301, -1, 275,
-1, -1, -1, -1, 308, 309, -1, -1, -1, -1,
-1, 287, -1, -1, -1, -1, -1, 293, 294, 295,
296, 297, 298, 299, 300, 301, 275, -1, -1, -1,
-1, -1, 308, 309, -1, -1, -1, -1, 287, -1,
44, -1, -1, -1, 293, 294, 295, 296, 297, 298,
299, 300, 301, 275, -1, -1, -1, -1, 62, 308,
309, -1, -1, -1, -1, 287, -1, -1, -1, -1,
-1, 293, 294, 295, 296, 297, 298, 299, 300, 301,
-1, -1, -1, 257, -1, -1, 308, 309, -1, 263,
-1, -1, -1, -1, 275, 269, -1, -1, -1, -1,
-1, -1, 276, 277, 278, -1, 287, 281, -1, -1,
284, 275, 293, 294, 295, 296, 297, 298, 299, 300,
301, -1, -1, 287, -1, -1, -1, 308, 309, 293,
294, 295, 296, 297, 298, 299, 300, 301, -1, -1,
-1, 275, -1, -1, 308, 309, -1, -1, -1, -1,
-1, -1, -1, 287, -1, -1, -1, -1, -1, 293,
294, 295, 296, 297, 298, 299, 300, 301, -1, -1,
-1, -1, -1, -1, 308, 309, -1, -1, -1, 275,
2014-08-07 15:13:55 +00:00
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 287, -1, -1, -1, -1, -1, 293, 294, 295,
296, 297, 298, 299, 300, 301, -1, 60, -1, -1,
-1, -1, 308, 309, 37, 38, -1, 40, 41, 42,
43, 44, 45, -1, 47, -1, -1, 37, 38, -1,
-1, 41, 42, 43, 44, 45, 59, 47, 37, 62,
-1, -1, 41, 42, 43, 44, 45, 46, 47, 59,
60, -1, 62, 257, 258, -1, -1, -1, 262, 263,
59, 60, -1, 62, -1, 269, -1, -1, 91, -1,
274, 94, 276, 277, 278, 279, 280, 281, -1, -1,
284, 37, 38, -1, 94, 41, 42, 43, 44, 45,
46, 47, -1, -1, -1, 94, -1, 301, -1, -1,
123, 124, -1, 59, 60, -1, 62, -1, -1, -1,
-1, -1, -1, -1, 124, -1, -1, -1, -1, -1,
-1, -1, 37, 38, -1, 124, 41, 42, 43, 44,
45, 46, 47, 37, 38, -1, -1, 41, 42, 43,
44, 45, 46, 47, 59, 60, -1, 62, -1, -1,
-1, 257, -1, -1, -1, 59, 60, 263, 62, -1,
-1, -1, -1, 269, -1, -1, -1, -1, 124, -1,
276, 277, 278, -1, -1, 281, -1, -1, 284, 94,
-1, -1, -1, -1, -1, -1, -1, -1, 37, 38,
94, -1, 41, 42, 43, 44, 45, 46, 47, -1,
-1, -1, -1, -1, 257, 258, -1, -1, -1, 262,
59, 60, -1, 62, -1, -1, 269, -1, -1, -1,
124, 274, -1, 276, 277, 278, -1, -1, -1, -1,
-1, 284, -1, -1, 257, 258, -1, -1, 291, 262,
263, -1, -1, -1, -1, 94, 269, -1, 301, -1,
273, 274, -1, 276, 277, 278, 279, 280, 281, 282,
-1, 284, -1, 273, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 273, 124, -1, -1, 301, 302,
303, 304, 305, 306, 307, 308, 309, -1, -1, -1,
2014-08-07 15:13:55 +00:00
-1, -1, 302, 303, 304, 305, 306, 307, 308, 309,
-1, -1, -1, 302, 303, 304, 305, 306, 307, 308,
309, -1, -1, -1, -1, -1, -1, 273, -1, 37,
38, -1, -1, 41, 42, 43, 44, 45, -1, 47,
2014-08-07 15:13:55 +00:00
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 59, 60, -1, 62, -1, 302, 303, 304, 305,
306, 307, 308, 309, -1, -1, 37, -1, 273, -1,
41, 42, 43, 44, 45, 46, 47, -1, -1, 273,
-1, -1, -1, -1, -1, -1, 94, -1, 59, 60,
-1, 62, -1, -1, -1, -1, -1, 302, 303, 304,
305, 306, 307, 308, 309, -1, -1, -1, 302, 303,
304, 305, 306, -1, 308, 309, 124, -1, -1, -1,
37, 38, -1, 94, 41, 42, 43, 44, 45, 46,
47, -1, -1, -1, 273, -1, -1, -1, -1, -1,
-1, -1, 59, 60, -1, 62, -1, -1, -1, -1,
-1, -1, -1, 124, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 302, 303, 304, 305, -1, 307, 308,
309, 37, 38, -1, -1, 41, 42, 43, 44, 45,
2014-08-07 15:13:55 +00:00
46, 47, -1, -1, -1, -1, -1, -1, -1, -1,
44, -1, -1, 59, 60, -1, 62, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 124, 62, -1,
-1, -1, -1, -1, -1, -1, 37, 38, -1, -1,
41, 42, 43, 44, 45, 46, 47, -1, 94, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 59, 60,
-1, 62, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 37, 38, -1, -1, 41, 42, -1,
44, -1, 46, 47, -1, 273, -1, -1, -1, -1,
-1, -1, -1, 94, -1, 59, 60, -1, 62, -1,
-1, -1, 37, 38, -1, -1, 41, 42, 43, 44,
45, 46, 47, -1, 302, 303, 304, 305, 306, 307,
308, 309, 273, 124, 59, -1, -1, -1, 37, 38,
94, -1, 41, 42, 43, 44, 45, 46, 47, 37,
2014-08-07 15:13:55 +00:00
38, -1, -1, 41, 42, 43, 44, 45, 46, 47,
59, 302, 303, 304, 305, 306, 307, 308, 309, 94,
124, 59, 60, -1, 62, 37, 38, -1, -1, 41,
42, 43, 44, 45, 46, 47, 273, -1, -1, -1,
-1, -1, -1, -1, -1, 94, -1, 59, 60, 124,
62, -1, -1, -1, 37, 38, 94, -1, 41, 42,
43, 44, 45, 46, 47, 302, 303, 304, 305, 306,
307, 308, 309, -1, -1, 124, 59, -1, -1, -1,
-1, -1, 94, 257, 258, -1, 124, 273, 262, 263,
-1, -1, -1, -1, -1, 269, -1, -1, -1, -1,
274, -1, 276, 277, 278, 279, 280, 281, -1, -1,
284, 94, 124, -1, -1, -1, 302, 303, 304, 305,
2014-07-09 08:52:23 +00:00
};
}
class yyCheck2 {
protected static final short yyCheck2 [] = { 306,
307, 308, 309, -1, -1, -1, 301, 38, -1, -1,
41, 273, 43, 44, 45, 46, -1, -1, -1, -1,
124, -1, -1, -1, -1, -1, -1, -1, 59, 60,
38, 62, -1, 41, -1, 43, 44, 45, 46, 60,
302, 303, 304, 305, 306, -1, 308, 309, 273, -1,
-1, 59, 60, -1, 62, -1, -1, -1, -1, -1,
-1, -1, -1, 94, -1, -1, -1, 38, -1, -1,
41, -1, 43, 44, 45, 46, -1, 302, 303, 304,
305, 306, 307, 308, 309, -1, 94, -1, 59, 60,
-1, 62, -1, 124, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 125, -1, 302, -1, -1, 305,
306, 307, 308, 309, 273, -1, 124, -1, -1, -1,
-1, -1, -1, 94, -1, -1, -1, 40, -1, -1,
-1, -1, 302, -1, -1, 305, 306, 307, 308, 309,
273, -1, -1, -1, 303, 304, 59, 306, 307, 308,
309, -1, -1, 124, -1, -1, 37, 38, -1, -1,
41, 42, 43, 44, 45, 46, 47, -1, -1, -1,
303, 304, -1, 306, 307, 308, 309, -1, 59, 60,
-1, 62, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 40, -1, 302, -1,
-1, 305, 306, 307, 308, 309, -1, -1, -1, -1,
123, -1, 125, 94, -1, 59, -1, -1, -1, -1,
2014-08-07 15:13:55 +00:00
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 257, 258, -1, -1,
40, 262, 273, 124, -1, -1, -1, -1, 269, -1,
-1, -1, -1, 274, -1, 276, 277, 278, -1, 59,
-1, -1, -1, 284, -1, 273, -1, -1, -1, -1,
291, 302, 303, 304, 305, 306, 307, 308, 309, 123,
301, 125, -1, -1, 40, -1, -1, -1, -1, -1,
2014-08-07 15:13:55 +00:00
-1, -1, -1, -1, 302, 303, 304, 305, 306, 307,
308, 309, 273, 59, -1, -1, -1, -1, -1, -1,
-1, -1, 90, -1, -1, -1, 94, -1, -1, -1,
-1, -1, -1, 123, -1, 125, -1, -1, 40, 107,
108, 302, 303, 304, 305, 306, 307, 308, 309, -1,
-1, -1, -1, -1, -1, 258, -1, 59, 126, 262,
128, 129, -1, -1, 267, -1, -1, -1, 271, 272,
-1, 274, -1, -1, -1, -1, -1, 123, -1, 125,
283, -1, -1, 151, 287, 153, -1, -1, -1, 292,
2014-08-07 15:13:55 +00:00
293, 294, 295, 296, 297, 298, 299, 300, 301, -1,
40, 169, 273, -1, 172, 308, 309, -1, -1, -1,
-1, -1, -1, 181, -1, 183, -1, -1, -1, 59,
-1, 123, -1, 125, 258, -1, -1, -1, 262, -1,
-1, 302, 303, 304, 305, 306, 307, 271, 272, -1,
274, -1, -1, -1, -1, -1, -1, -1, -1, 283,
-1, -1, -1, 287, -1, -1, -1, 40, 292, 293,
294, 295, 296, 297, 298, 299, 300, 301, 258, -1,
-1, -1, 262, -1, 308, 309, 59, -1, -1, -1,
-1, 271, 272, 123, 274, 125, -1, -1, -1, -1,
-1, -1, -1, 283, -1, -1, 40, 287, -1, -1,
-1, -1, 292, 293, 294, 295, 296, 297, 298, 299,
300, 301, 258, -1, -1, 59, 262, -1, 308, 309,
-1, -1, -1, -1, -1, 271, 272, -1, 274, -1,
-1, -1, -1, 301, 302, -1, -1, 283, 40, -1,
2014-08-07 15:13:55 +00:00
123, 287, 125, -1, -1, -1, 292, 293, 294, 295,
296, 297, 298, 299, 300, 301, 258, 59, -1, -1,
262, -1, 308, 309, -1, -1, -1, -1, -1, 271,
272, 428, 274, -1, -1, 432, -1, -1, -1, 123,
-1, 283, 439, -1, -1, 287, -1, -1, -1, -1,
292, 293, 294, 295, 296, 297, 298, 299, 300, 301,
-1, 458, 459, -1, 461, -1, 308, 309, -1, 466,
-1, 60, -1, 470, -1, 472, 473, -1, 258, -1,
-1, 123, 262, -1, 481, 482, 483, -1, -1, -1,
487, 271, 272, -1, 274, -1, -1, -1, -1, -1,
-1, 60, -1, 283, -1, -1, -1, 287, -1, -1,
-1, -1, 292, 293, 294, 295, 296, 297, 298, 299,
300, 301, -1, -1, -1, -1, -1, -1, 308, 309,
-1, 60, -1, -1, -1, 258, 125, -1, -1, 262,
-1, -1, -1, -1, -1, -1, -1, -1, 271, 272,
-1, 274, -1, -1, -1, -1, -1, -1, -1, 60,
283, -1, -1, -1, 287, -1, 125, -1, -1, 292,
2014-08-07 15:13:55 +00:00
293, 294, 295, 296, 297, 298, 299, 300, 301, -1,
-1, -1, -1, -1, -1, 308, 309, 271, 272, -1,
-1, -1, -1, -1, -1, -1, 125, -1, -1, 283,
-1, -1, -1, 287, -1, -1, -1, -1, 292, 293,
294, 295, 296, 297, 298, 299, 300, 301, -1, -1,
-1, -1, -1, -1, 308, 309, -1, -1, -1, 271,
272, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 283, -1, -1, -1, 287, -1, -1, -1, -1,
292, 293, 294, 295, 296, 297, 298, 299, 300, 301,
-1, -1, -1, -1, -1, -1, 308, 309, 257, 258,
-1, -1, -1, 262, -1, -1, -1, -1, -1, -1,
269, -1, -1, -1, -1, 274, -1, 276, 277, 278,
-1, -1, -1, -1, -1, 284, -1, -1, 257, 258,
-1, -1, 291, 262, -1, -1, -1, -1, -1, -1,
269, -1, 301, -1, -1, 274, -1, 276, 277, 278,
-1, -1, -1, -1, -1, 284, -1, -1, 257, 258,
-1, -1, 291, 262, -1, -1, -1, -1, -1, -1,
269, -1, 301, -1, -1, 274, -1, 276, 277, 278,
-1, -1, -1, -1, -1, 284, 257, 258, -1, -1,
-1, 262, 291, -1, -1, -1, -1, -1, 269, -1,
-1, -1, 301, 274, -1, 276, 277, 278, -1, -1,
-1, -1, -1, 284, -1, -1, 257, 258, -1, -1,
291, 262, 263, -1, -1, -1, -1, -1, 269, -1,
301, -1, -1, 274, -1, 276, 277, 278, 279, 280,
281, -1, -1, 284, -1, -1, -1, -1, -1, -1,
2014-07-09 08:52:23 +00:00
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
301,
2014-07-09 08:52:23 +00:00
};
}
class yyCheckInit {
static short[] yyCheck = new short[2964];
2014-07-09 08:52:23 +00:00
protected static void yyCheckInit () {
int numyycheck;
int yyCheckerun = 0;
for (numyycheck = 0; numyycheck <= 1000; numyycheck++) {
if (yyCheckerun < 2964) {
2014-07-09 08:52:23 +00:00
yyCheck[yyCheckerun] = yyCheck0.yyCheck0[numyycheck];
yyCheckerun++;
}
}
for (numyycheck = 0; numyycheck <= 1000; numyycheck++) {
if (yyCheckerun < 2964) {
2014-07-09 08:52:23 +00:00
yyCheck[yyCheckerun] = yyCheck1.yyCheck1[numyycheck];
yyCheckerun++;
}
}
for (numyycheck = 0; numyycheck <= 1000; numyycheck++) {
if (yyCheckerun < 2964) {
2014-07-09 08:52:23 +00:00
yyCheck[yyCheckerun] = yyCheck2.yyCheck2[numyycheck];
yyCheckerun++;
}
}
}
}