HADOOP-2557 Shell count function
git-svn-id: https://svn.apache.org/repos/asf/lucene/hadoop/trunk/src/contrib/hbase@611537 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
470b3a3200
commit
d7de304808
@ -2,6 +2,7 @@ HBase Change Log
|
|||||||
|
|
||||||
|
|
||||||
Trunk (unreleased changes)
|
Trunk (unreleased changes)
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
HADOOP-2056 A table with row keys containing colon fails to split regions
|
HADOOP-2056 A table with row keys containing colon fails to split regions
|
||||||
HADOOP-2079 Fix generated HLog, HRegion names
|
HADOOP-2079 Fix generated HLog, HRegion names
|
||||||
@ -169,8 +170,7 @@ Trunk (unreleased changes)
|
|||||||
HADOOP-2553 Don't make Long objects calculating hbase type hash codes
|
HADOOP-2553 Don't make Long objects calculating hbase type hash codes
|
||||||
HADOOP-2548 Make TableMap and TableReduce generic
|
HADOOP-2548 Make TableMap and TableReduce generic
|
||||||
(Frederik Hedberg via Stack)
|
(Frederik Hedberg via Stack)
|
||||||
|
HADOOP-2557 Shell count function (Edward Yoon via Stack)
|
||||||
|
|
||||||
|
|
||||||
Release 0.15.1
|
Release 0.15.1
|
||||||
Branch 0.15
|
Branch 0.15
|
||||||
|
@ -129,6 +129,11 @@ TOKEN: /** for HQL statements */
|
|||||||
| <CHANGE: "change">
|
| <CHANGE: "change">
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TOKEN : /** Functions */
|
||||||
|
{
|
||||||
|
<COUNT: "count">
|
||||||
|
}
|
||||||
|
|
||||||
TOKEN : /** Literals */
|
TOKEN : /** Literals */
|
||||||
{
|
{
|
||||||
<ID: ["A"-"Z","a"-"z","_","-",":","/","~","."] (["A"-"Z","a"-"z","0"-"9","_","-",":","/","~","."])* >
|
<ID: ["A"-"Z","a"-"z","_","-",":","/","~","."] (["A"-"Z","a"-"z","0"-"9","_","-",":","/","~","."])* >
|
||||||
@ -575,10 +580,13 @@ SelectCommand selectCommand() :
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
<SELECT>
|
<SELECT>
|
||||||
columns = columnList()
|
(
|
||||||
|
<COUNT> columns = getLiteralValues()
|
||||||
|
{ select.setCountFunction(true); }
|
||||||
|
| columns = columnList()
|
||||||
|
)
|
||||||
<FROM>
|
<FROM>
|
||||||
tableName = identifier()
|
tableName = identifier()
|
||||||
|
|
||||||
{
|
{
|
||||||
select.setColumns(columns);
|
select.setColumns(columns);
|
||||||
select.setTable(tableName);
|
select.setTable(tableName);
|
||||||
@ -667,20 +675,17 @@ List<String> getLiteralValues() :
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
<LPAREN>
|
<LPAREN>
|
||||||
{ literal = getStringLiteral();
|
{
|
||||||
if(literal != null) values.add(literal);
|
literal = getStringLiteral();
|
||||||
|
if(literal != null) values.add(literal);
|
||||||
}
|
}
|
||||||
|
|
||||||
(
|
(
|
||||||
<COMMA> {
|
<COMMA> {
|
||||||
literal = getStringLiteral();
|
literal = getStringLiteral();
|
||||||
if(literal != null) values.add(literal);
|
if(literal != null) values.add(literal);
|
||||||
}
|
}
|
||||||
| (
|
)*
|
||||||
<ID>
|
|
||||||
| <STRING_LITERAL>
|
|
||||||
| <QUOTED_IDENTIFIER>
|
|
||||||
) { values.removeAll(values); }
|
|
||||||
)*
|
|
||||||
<RPAREN>
|
<RPAREN>
|
||||||
{
|
{
|
||||||
return values;
|
return values;
|
||||||
@ -690,13 +695,21 @@ List<String> getLiteralValues() :
|
|||||||
String getStringLiteral() :
|
String getStringLiteral() :
|
||||||
{
|
{
|
||||||
Token s;
|
Token s;
|
||||||
|
String value = null;
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
( s=<STRING_LITERAL> | s=<QUOTED_IDENTIFIER> )
|
(
|
||||||
{
|
( s=<STRING_LITERAL> | s=<QUOTED_IDENTIFIER> )
|
||||||
String value = s.image.toString();
|
{
|
||||||
return value.substring(1,value.length() - 1);
|
value = s.image.toString();
|
||||||
}
|
return value.substring(1,value.length() - 1);
|
||||||
|
}
|
||||||
|
| ( s=<ID> | s=<INTEGER_LITERAL> | s=<ASTERISK> )
|
||||||
|
{
|
||||||
|
value = s.image.toString();
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
String getColumn() :
|
String getColumn() :
|
||||||
|
@ -108,7 +108,7 @@ public class HelpCommand extends BasicCommand {
|
|||||||
|
|
||||||
load.put("SELECT", new String[] {
|
load.put("SELECT", new String[] {
|
||||||
"Select values from table",
|
"Select values from table",
|
||||||
"SELECT {column_name, [, column_name] ... | *} FROM table_name "
|
"SELECT {column_name, [, column_name] ... | expr[alias] | * } FROM table_name "
|
||||||
+ "[WHERE row='row_key' | STARTING FROM 'row-key' [UNTIL 'stop-key']] "
|
+ "[WHERE row='row_key' | STARTING FROM 'row-key' [UNTIL 'stop-key']] "
|
||||||
+ "[NUM_VERSIONS = version_count] " + "[TIMESTAMP 'timestamp'] "
|
+ "[NUM_VERSIONS = version_count] " + "[TIMESTAMP 'timestamp'] "
|
||||||
+ "[LIMIT = row_count] " + "[INTO FILE 'file_name'];" });
|
+ "[LIMIT = row_count] " + "[INTO FILE 'file_name'];" });
|
||||||
|
@ -47,8 +47,6 @@ import org.apache.hadoop.io.Text;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Selects values from tables.
|
* Selects values from tables.
|
||||||
*
|
|
||||||
* TODO: INTO FILE is not yet implemented.
|
|
||||||
*/
|
*/
|
||||||
public class SelectCommand extends BasicCommand {
|
public class SelectCommand extends BasicCommand {
|
||||||
private Text tableName;
|
private Text tableName;
|
||||||
@ -59,10 +57,10 @@ public class SelectCommand extends BasicCommand {
|
|||||||
private int limit;
|
private int limit;
|
||||||
// Count of versions to return.
|
// Count of versions to return.
|
||||||
private int version;
|
private int version;
|
||||||
|
private boolean countFunction = false;
|
||||||
private boolean whereClause = false;
|
private boolean whereClause = false;
|
||||||
private static final String[] HEADER_ROW_CELL = new String[] { "Row", "Cell" };
|
private static final String[] HEADER_ROW_CELL = new String[] { "Row", "Cell" };
|
||||||
private static final String[] HEADER_COLUMN_CELL = new String[] { "Column",
|
private static final String[] HEADER_COLUMN_CELL = new String[] { "Column", "Cell" };
|
||||||
"Cell" };
|
|
||||||
private static final String[] HEADER = new String[] { "Row", "Column", "Cell" };
|
private static final String[] HEADER = new String[] { "Row", "Column", "Cell" };
|
||||||
private static final String ASTERISK = "*";
|
private static final String ASTERISK = "*";
|
||||||
|
|
||||||
@ -93,7 +91,11 @@ public class SelectCommand extends BasicCommand {
|
|||||||
HBaseAdmin admin = new HBaseAdmin(conf);
|
HBaseAdmin admin = new HBaseAdmin(conf);
|
||||||
int count = 0;
|
int count = 0;
|
||||||
if (whereClause) {
|
if (whereClause) {
|
||||||
count = compoundWherePrint(table, admin);
|
if (countFunction) {
|
||||||
|
count = 1;
|
||||||
|
} else {
|
||||||
|
count = compoundWherePrint(table, admin);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
count = scanPrint(table, admin);
|
count = scanPrint(table, admin);
|
||||||
}
|
}
|
||||||
@ -105,8 +107,8 @@ public class SelectCommand extends BasicCommand {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private boolean isMetaTable() {
|
private boolean isMetaTable() {
|
||||||
return (tableName.equals(HConstants.ROOT_TABLE_NAME)
|
return (tableName.equals(HConstants.ROOT_TABLE_NAME) || tableName
|
||||||
|| tableName.equals(HConstants.META_TABLE_NAME)) ? true : false;
|
.equals(HConstants.META_TABLE_NAME)) ? true : false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private int compoundWherePrint(HTable table, HBaseAdmin admin) {
|
private int compoundWherePrint(HTable table, HBaseAdmin admin) {
|
||||||
@ -118,7 +120,7 @@ public class SelectCommand extends BasicCommand {
|
|||||||
ParsedColumns parsedColumns = getColumns(admin, false);
|
ParsedColumns parsedColumns = getColumns(admin, false);
|
||||||
boolean multiple = parsedColumns.isMultiple() || version > 1;
|
boolean multiple = parsedColumns.isMultiple() || version > 1;
|
||||||
for (Text column : parsedColumns.getColumns()) {
|
for (Text column : parsedColumns.getColumns()) {
|
||||||
if(count == 0) {
|
if (count == 0) {
|
||||||
formatter.header(multiple ? HEADER_COLUMN_CELL : null);
|
formatter.header(multiple ? HEADER_COLUMN_CELL : null);
|
||||||
}
|
}
|
||||||
if (timestamp != 0) {
|
if (timestamp != 0) {
|
||||||
@ -138,7 +140,7 @@ public class SelectCommand extends BasicCommand {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
for (Map.Entry<Text, byte[]> e : table.getRow(rowKey).entrySet()) {
|
for (Map.Entry<Text, byte[]> e : table.getRow(rowKey).entrySet()) {
|
||||||
if(count == 0) {
|
if (count == 0) {
|
||||||
formatter.header(isMultiple() ? HEADER_COLUMN_CELL : null);
|
formatter.header(isMultiple() ? HEADER_COLUMN_CELL : null);
|
||||||
}
|
}
|
||||||
Text key = e.getKey();
|
Text key = e.getKey();
|
||||||
@ -156,14 +158,14 @@ public class SelectCommand extends BasicCommand {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(count == 0 && Shell.HTML_OPTION != null) {
|
if (count == 0 && Shell.HTML_OPTION != null) {
|
||||||
formatter.header(isMultiple() ? HEADER_COLUMN_CELL : null);
|
formatter.header(isMultiple() ? HEADER_COLUMN_CELL : null);
|
||||||
}
|
}
|
||||||
formatter.footer();
|
formatter.footer();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
return count;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
private String toString(final Text columnName, final byte[] cell)
|
private String toString(final Text columnName, final byte[] cell)
|
||||||
@ -219,8 +221,9 @@ public class SelectCommand extends BasicCommand {
|
|||||||
scan = table.obtainScanner(cols, rowKey, timestamp);
|
scan = table.obtainScanner(cols, rowKey, timestamp);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(this.stopRow.toString().length() > 0) {
|
if (this.stopRow.toString().length() > 0) {
|
||||||
RowFilterInterface filter = new WhileMatchRowFilter(new StopRowFilter(stopRow));
|
RowFilterInterface filter = new WhileMatchRowFilter(new StopRowFilter(
|
||||||
|
stopRow));
|
||||||
scan = table.obtainScanner(cols, rowKey, filter);
|
scan = table.obtainScanner(cols, rowKey, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -228,29 +231,34 @@ public class SelectCommand extends BasicCommand {
|
|||||||
TreeMap<Text, byte[]> results = new TreeMap<Text, byte[]>();
|
TreeMap<Text, byte[]> results = new TreeMap<Text, byte[]>();
|
||||||
// If only one column in query, then don't print out the column.
|
// If only one column in query, then don't print out the column.
|
||||||
while (scan.next(key, results) && checkLimit(count)) {
|
while (scan.next(key, results) && checkLimit(count)) {
|
||||||
if(count == 0) {
|
if (count == 0 && !countFunction) {
|
||||||
formatter.header((parsedColumns.isMultiple()) ? HEADER : HEADER_ROW_CELL);
|
formatter.header((parsedColumns.isMultiple()) ? HEADER : HEADER_ROW_CELL);
|
||||||
}
|
}
|
||||||
|
|
||||||
Text r = key.getRow();
|
Text r = key.getRow();
|
||||||
for (Text columnKey : results.keySet()) {
|
|
||||||
String cellData = toString(columnKey, results.get(columnKey));
|
if (!countFunction) {
|
||||||
if (parsedColumns.isMultiple()) {
|
for (Text columnKey : results.keySet()) {
|
||||||
formatter.row(new String[] { r.toString(), columnKey.toString(),
|
String cellData = toString(columnKey, results.get(columnKey));
|
||||||
cellData });
|
if (parsedColumns.isMultiple()) {
|
||||||
} else {
|
formatter.row(new String[] { r.toString(), columnKey.toString(),
|
||||||
// Don't print out the column since only one specified in query.
|
cellData });
|
||||||
formatter.row(new String[] { r.toString(), cellData });
|
} else {
|
||||||
}
|
// Don't print out the column since only one specified in query.
|
||||||
count++;
|
formatter.row(new String[] { r.toString(), cellData });
|
||||||
if (limit > 0 && count >= limit) {
|
}
|
||||||
break;
|
if (limit > 0 && count >= limit) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
count++;
|
||||||
// Clear results else subsequent results polluted w/ previous finds.
|
// Clear results else subsequent results polluted w/ previous finds.
|
||||||
results.clear();
|
results.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
if(count == 0 && Shell.HTML_OPTION != null) {
|
if (count == 0 && Shell.HTML_OPTION != null && !countFunction) {
|
||||||
formatter.header((parsedColumns.isMultiple()) ? HEADER : HEADER_ROW_CELL);
|
formatter.header((parsedColumns.isMultiple()) ? HEADER : HEADER_ROW_CELL);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -279,7 +287,8 @@ public class SelectCommand extends BasicCommand {
|
|||||||
HTableDescriptor[] tables = admin.listTables();
|
HTableDescriptor[] tables = admin.listTables();
|
||||||
for (int i = 0; i < tables.length; i++) {
|
for (int i = 0; i < tables.length; i++) {
|
||||||
if (tables[i].getName().equals(tableName)) {
|
if (tables[i].getName().equals(tableName)) {
|
||||||
result = new ParsedColumns(new ArrayList<Text>(tables[i].families().keySet()));
|
result = new ParsedColumns(new ArrayList<Text>(tables[i].families()
|
||||||
|
.keySet()));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -346,6 +355,10 @@ public class SelectCommand extends BasicCommand {
|
|||||||
this.rowKey = new Text(rowKey);
|
this.rowKey = new Text(rowKey);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setCountFunction(boolean countFunction) {
|
||||||
|
this.countFunction = countFunction;
|
||||||
|
}
|
||||||
|
|
||||||
public void setStopRow(String stopRow) {
|
public void setStopRow(String stopRow) {
|
||||||
this.stopRow = new Text(stopRow);
|
this.stopRow = new Text(stopRow);
|
||||||
}
|
}
|
||||||
|
@ -76,7 +76,7 @@ public class Parser implements ParserConstants {
|
|||||||
case SELECT:
|
case SELECT:
|
||||||
case ENABLE:
|
case ENABLE:
|
||||||
case DISABLE:
|
case DISABLE:
|
||||||
case 67:
|
case 68:
|
||||||
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
|
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
|
||||||
case HELP:
|
case HELP:
|
||||||
case ALTER:
|
case ALTER:
|
||||||
@ -101,7 +101,7 @@ public class Parser implements ParserConstants {
|
|||||||
jj_la1[0] = jj_gen;
|
jj_la1[0] = jj_gen;
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
jj_consume_token(67);
|
jj_consume_token(68);
|
||||||
break;
|
break;
|
||||||
case 0:
|
case 0:
|
||||||
jj_consume_token(0);
|
jj_consume_token(0);
|
||||||
@ -691,7 +691,24 @@ public class Parser implements ParserConstants {
|
|||||||
String tableName = null;
|
String tableName = null;
|
||||||
int limit;
|
int limit;
|
||||||
jj_consume_token(SELECT);
|
jj_consume_token(SELECT);
|
||||||
columns = columnList();
|
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
|
||||||
|
case COUNT:
|
||||||
|
jj_consume_token(COUNT);
|
||||||
|
columns = getLiteralValues();
|
||||||
|
select.setCountFunction(true);
|
||||||
|
break;
|
||||||
|
case ASTERISK:
|
||||||
|
case ID:
|
||||||
|
case INTEGER_LITERAL:
|
||||||
|
case QUOTED_IDENTIFIER:
|
||||||
|
case STRING_LITERAL:
|
||||||
|
columns = columnList();
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
jj_la1[22] = jj_gen;
|
||||||
|
jj_consume_token(-1);
|
||||||
|
throw new ParseException();
|
||||||
|
}
|
||||||
jj_consume_token(FROM);
|
jj_consume_token(FROM);
|
||||||
tableName = identifier();
|
tableName = identifier();
|
||||||
select.setColumns(columns);
|
select.setColumns(columns);
|
||||||
@ -711,7 +728,7 @@ public class Parser implements ParserConstants {
|
|||||||
jj_consume_token(FROM);
|
jj_consume_token(FROM);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
jj_la1[22] = jj_gen;
|
jj_la1[23] = jj_gen;
|
||||||
jj_consume_token(-1);
|
jj_consume_token(-1);
|
||||||
throw new ParseException();
|
throw new ParseException();
|
||||||
}
|
}
|
||||||
@ -724,12 +741,12 @@ public class Parser implements ParserConstants {
|
|||||||
select.setStopRow(stopRow);
|
select.setStopRow(stopRow);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
jj_la1[23] = jj_gen;
|
jj_la1[24] = jj_gen;
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
jj_la1[24] = jj_gen;
|
jj_la1[25] = jj_gen;
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
|
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
|
||||||
@ -739,7 +756,7 @@ public class Parser implements ParserConstants {
|
|||||||
select.setTimestamp(timestamp);
|
select.setTimestamp(timestamp);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
jj_la1[25] = jj_gen;
|
jj_la1[26] = jj_gen;
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
|
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
|
||||||
@ -750,7 +767,7 @@ public class Parser implements ParserConstants {
|
|||||||
select.setVersion(numVersion);
|
select.setVersion(numVersion);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
jj_la1[26] = jj_gen;
|
jj_la1[27] = jj_gen;
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
|
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
|
||||||
@ -765,7 +782,7 @@ public class Parser implements ParserConstants {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
jj_la1[27] = jj_gen;
|
jj_la1[28] = jj_gen;
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
{if (true) return select;}
|
{if (true) return select;}
|
||||||
@ -803,52 +820,21 @@ public class Parser implements ParserConstants {
|
|||||||
List<String> values = new ArrayList<String>();
|
List<String> values = new ArrayList<String>();
|
||||||
String literal = null;
|
String literal = null;
|
||||||
jj_consume_token(LPAREN);
|
jj_consume_token(LPAREN);
|
||||||
literal = getStringLiteral();
|
literal = getStringLiteral();
|
||||||
if(literal != null) values.add(literal);
|
if(literal != null) values.add(literal);
|
||||||
label_6:
|
label_6:
|
||||||
while (true) {
|
while (true) {
|
||||||
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
|
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
|
||||||
case COMMA:
|
case COMMA:
|
||||||
case ID:
|
|
||||||
case QUOTED_IDENTIFIER:
|
|
||||||
case STRING_LITERAL:
|
|
||||||
;
|
;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
jj_la1[28] = jj_gen;
|
jj_la1[29] = jj_gen;
|
||||||
break label_6;
|
break label_6;
|
||||||
}
|
}
|
||||||
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
|
jj_consume_token(COMMA);
|
||||||
case COMMA:
|
literal = getStringLiteral();
|
||||||
jj_consume_token(COMMA);
|
if(literal != null) values.add(literal);
|
||||||
literal = getStringLiteral();
|
|
||||||
if(literal != null) values.add(literal);
|
|
||||||
break;
|
|
||||||
case ID:
|
|
||||||
case QUOTED_IDENTIFIER:
|
|
||||||
case STRING_LITERAL:
|
|
||||||
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
|
|
||||||
case ID:
|
|
||||||
jj_consume_token(ID);
|
|
||||||
break;
|
|
||||||
case STRING_LITERAL:
|
|
||||||
jj_consume_token(STRING_LITERAL);
|
|
||||||
break;
|
|
||||||
case QUOTED_IDENTIFIER:
|
|
||||||
jj_consume_token(QUOTED_IDENTIFIER);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
jj_la1[29] = jj_gen;
|
|
||||||
jj_consume_token(-1);
|
|
||||||
throw new ParseException();
|
|
||||||
}
|
|
||||||
values.removeAll(values);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
jj_la1[30] = jj_gen;
|
|
||||||
jj_consume_token(-1);
|
|
||||||
throw new ParseException();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
jj_consume_token(RPAREN);
|
jj_consume_token(RPAREN);
|
||||||
{if (true) return values;}
|
{if (true) return values;}
|
||||||
@ -857,20 +843,51 @@ public class Parser implements ParserConstants {
|
|||||||
|
|
||||||
final public String getStringLiteral() throws ParseException {
|
final public String getStringLiteral() throws ParseException {
|
||||||
Token s;
|
Token s;
|
||||||
|
String value = null;
|
||||||
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
|
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
|
||||||
case STRING_LITERAL:
|
|
||||||
s = jj_consume_token(STRING_LITERAL);
|
|
||||||
break;
|
|
||||||
case QUOTED_IDENTIFIER:
|
case QUOTED_IDENTIFIER:
|
||||||
s = jj_consume_token(QUOTED_IDENTIFIER);
|
case STRING_LITERAL:
|
||||||
|
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
|
||||||
|
case STRING_LITERAL:
|
||||||
|
s = jj_consume_token(STRING_LITERAL);
|
||||||
|
break;
|
||||||
|
case QUOTED_IDENTIFIER:
|
||||||
|
s = jj_consume_token(QUOTED_IDENTIFIER);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
jj_la1[30] = jj_gen;
|
||||||
|
jj_consume_token(-1);
|
||||||
|
throw new ParseException();
|
||||||
|
}
|
||||||
|
value = s.image.toString();
|
||||||
|
{if (true) return value.substring(1,value.length() - 1);}
|
||||||
|
break;
|
||||||
|
case ASTERISK:
|
||||||
|
case ID:
|
||||||
|
case INTEGER_LITERAL:
|
||||||
|
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
|
||||||
|
case ID:
|
||||||
|
s = jj_consume_token(ID);
|
||||||
|
break;
|
||||||
|
case INTEGER_LITERAL:
|
||||||
|
s = jj_consume_token(INTEGER_LITERAL);
|
||||||
|
break;
|
||||||
|
case ASTERISK:
|
||||||
|
s = jj_consume_token(ASTERISK);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
jj_la1[31] = jj_gen;
|
||||||
|
jj_consume_token(-1);
|
||||||
|
throw new ParseException();
|
||||||
|
}
|
||||||
|
value = s.image.toString();
|
||||||
|
{if (true) return value;}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
jj_la1[31] = jj_gen;
|
jj_la1[32] = jj_gen;
|
||||||
jj_consume_token(-1);
|
jj_consume_token(-1);
|
||||||
throw new ParseException();
|
throw new ParseException();
|
||||||
}
|
}
|
||||||
String value = s.image.toString();
|
|
||||||
{if (true) return value.substring(1,value.length() - 1);}
|
|
||||||
throw new Error("Missing return statement in function");
|
throw new Error("Missing return statement in function");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -891,7 +908,7 @@ public class Parser implements ParserConstants {
|
|||||||
col = jj_consume_token(ASTERISK);
|
col = jj_consume_token(ASTERISK);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
jj_la1[32] = jj_gen;
|
jj_la1[33] = jj_gen;
|
||||||
jj_consume_token(-1);
|
jj_consume_token(-1);
|
||||||
throw new ParseException();
|
throw new ParseException();
|
||||||
}
|
}
|
||||||
@ -907,14 +924,14 @@ public class Parser implements ParserConstants {
|
|||||||
col = jj_consume_token(STRING_LITERAL);
|
col = jj_consume_token(STRING_LITERAL);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
jj_la1[33] = jj_gen;
|
jj_la1[34] = jj_gen;
|
||||||
jj_consume_token(-1);
|
jj_consume_token(-1);
|
||||||
throw new ParseException();
|
throw new ParseException();
|
||||||
}
|
}
|
||||||
{if (true) return col.image.substring(1,col.image.toString().length() - 1);}
|
{if (true) return col.image.substring(1,col.image.toString().length() - 1);}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
jj_la1[34] = jj_gen;
|
jj_la1[35] = jj_gen;
|
||||||
jj_consume_token(-1);
|
jj_consume_token(-1);
|
||||||
throw new ParseException();
|
throw new ParseException();
|
||||||
}
|
}
|
||||||
@ -934,7 +951,7 @@ public class Parser implements ParserConstants {
|
|||||||
;
|
;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
jj_la1[35] = jj_gen;
|
jj_la1[36] = jj_gen;
|
||||||
break label_7;
|
break label_7;
|
||||||
}
|
}
|
||||||
jj_consume_token(COMMA);
|
jj_consume_token(COMMA);
|
||||||
@ -958,7 +975,7 @@ public class Parser implements ParserConstants {
|
|||||||
;
|
;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
jj_la1[36] = jj_gen;
|
jj_la1[37] = jj_gen;
|
||||||
break label_8;
|
break label_8;
|
||||||
}
|
}
|
||||||
jj_consume_token(COMMA);
|
jj_consume_token(COMMA);
|
||||||
@ -985,7 +1002,7 @@ public class Parser implements ParserConstants {
|
|||||||
;
|
;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
jj_la1[37] = jj_gen;
|
jj_la1[38] = jj_gen;
|
||||||
break label_9;
|
break label_9;
|
||||||
}
|
}
|
||||||
jj_consume_token(COMMA);
|
jj_consume_token(COMMA);
|
||||||
@ -1007,7 +1024,7 @@ public class Parser implements ParserConstants {
|
|||||||
t = jj_consume_token(INTEGER_LITERAL);
|
t = jj_consume_token(INTEGER_LITERAL);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
jj_la1[38] = jj_gen;
|
jj_la1[39] = jj_gen;
|
||||||
jj_consume_token(-1);
|
jj_consume_token(-1);
|
||||||
throw new ParseException();
|
throw new ParseException();
|
||||||
}
|
}
|
||||||
@ -1036,14 +1053,14 @@ public class Parser implements ParserConstants {
|
|||||||
t = jj_consume_token(STRING_LITERAL);
|
t = jj_consume_token(STRING_LITERAL);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
jj_la1[39] = jj_gen;
|
jj_la1[40] = jj_gen;
|
||||||
jj_consume_token(-1);
|
jj_consume_token(-1);
|
||||||
throw new ParseException();
|
throw new ParseException();
|
||||||
}
|
}
|
||||||
{if (true) return t.image.substring(1,t.image.toString().length() - 1);}
|
{if (true) return t.image.substring(1,t.image.toString().length() - 1);}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
jj_la1[40] = jj_gen;
|
jj_la1[41] = jj_gen;
|
||||||
jj_consume_token(-1);
|
jj_consume_token(-1);
|
||||||
throw new ParseException();
|
throw new ParseException();
|
||||||
}
|
}
|
||||||
@ -1064,17 +1081,6 @@ public class Parser implements ParserConstants {
|
|||||||
finally { jj_save(0, xla); }
|
finally { jj_save(0, xla); }
|
||||||
}
|
}
|
||||||
|
|
||||||
final private boolean jj_3R_11() {
|
|
||||||
if (jj_scan_token(ID)) return true;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
final private boolean jj_3_1() {
|
|
||||||
if (jj_scan_token(ADD)) return true;
|
|
||||||
if (jj_3R_10()) return true;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
final private boolean jj_3R_10() {
|
final private boolean jj_3R_10() {
|
||||||
Token xsp;
|
Token xsp;
|
||||||
xsp = jj_scanpos;
|
xsp = jj_scanpos;
|
||||||
@ -1085,16 +1091,27 @@ public class Parser implements ParserConstants {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
final private boolean jj_3_1() {
|
||||||
|
if (jj_scan_token(ADD)) return true;
|
||||||
|
if (jj_3R_10()) return true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
final private boolean jj_3R_12() {
|
final private boolean jj_3R_12() {
|
||||||
Token xsp;
|
Token xsp;
|
||||||
xsp = jj_scanpos;
|
xsp = jj_scanpos;
|
||||||
if (jj_scan_token(65)) {
|
if (jj_scan_token(66)) {
|
||||||
jj_scanpos = xsp;
|
jj_scanpos = xsp;
|
||||||
if (jj_scan_token(66)) return true;
|
if (jj_scan_token(67)) return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
final private boolean jj_3R_11() {
|
||||||
|
if (jj_scan_token(ID)) return true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
public ParserTokenManager token_source;
|
public ParserTokenManager token_source;
|
||||||
SimpleCharStream jj_input_stream;
|
SimpleCharStream jj_input_stream;
|
||||||
public Token token, jj_nt;
|
public Token token, jj_nt;
|
||||||
@ -1104,7 +1121,7 @@ public class Parser implements ParserConstants {
|
|||||||
public boolean lookingAhead = false;
|
public boolean lookingAhead = false;
|
||||||
private boolean jj_semLA;
|
private boolean jj_semLA;
|
||||||
private int jj_gen;
|
private int jj_gen;
|
||||||
final private int[] jj_la1 = new int[41];
|
final private int[] jj_la1 = new int[42];
|
||||||
static private int[] jj_la1_0;
|
static private int[] jj_la1_0;
|
||||||
static private int[] jj_la1_1;
|
static private int[] jj_la1_1;
|
||||||
static private int[] jj_la1_2;
|
static private int[] jj_la1_2;
|
||||||
@ -1114,13 +1131,13 @@ public class Parser implements ParserConstants {
|
|||||||
jj_la1_2();
|
jj_la1_2();
|
||||||
}
|
}
|
||||||
private static void jj_la1_0() {
|
private static void jj_la1_0() {
|
||||||
jj_la1_0 = new int[] {0xf3ffe0,0xf3ffe1,0xf3ffe0,0x0,0x0,0x0,0x0,0x33dbc0,0x33dbc0,0x0,0x600,0x0,0x0,0x0,0x0,0x0,0x0,0x1000,0x0,0x80000000,0x0,0x2000000,0x3000000,0x8000000,0x3000000,0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,};
|
jj_la1_0 = new int[] {0xf3ffe0,0xf3ffe1,0xf3ffe0,0x0,0x0,0x0,0x0,0x33dbc0,0x33dbc0,0x0,0x600,0x0,0x0,0x0,0x0,0x0,0x0,0x1000,0x0,0x80000000,0x0,0x2000000,0x0,0x3000000,0x8000000,0x3000000,0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,};
|
||||||
}
|
}
|
||||||
private static void jj_la1_1() {
|
private static void jj_la1_1() {
|
||||||
jj_la1_1 = new int[] {0x0,0x0,0x0,0x20000000,0xe0000000,0xe0000000,0x20000000,0x20000000,0x20000000,0x20000000,0x0,0x731c000,0xe0000,0xe00000,0x731c000,0x10,0x10,0x18000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x2,0x20000010,0x20000000,0x20000010,0x0,0x60002000,0x0,0x60002000,0x10,0x10,0x10,0x60000000,0x0,0x20000000,};
|
jj_la1_1 = new int[] {0x0,0x0,0x0,0x40000000,0xc0000000,0xc0000000,0x40000000,0x40000000,0x40000000,0x40000000,0x0,0x731c000,0xe0000,0xe00000,0x731c000,0x10,0x10,0x18000000,0x0,0x0,0x0,0x0,0xe0002000,0x0,0x0,0x0,0x0,0x1,0x2,0x10,0x0,0xc0002000,0xc0002000,0xc0002000,0x0,0xc0002000,0x10,0x10,0x10,0xc0000000,0x0,0x40000000,};
|
||||||
}
|
}
|
||||||
private static void jj_la1_2() {
|
private static void jj_la1_2() {
|
||||||
jj_la1_2 = new int[] {0x0,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x6,0x6,0x6,0x0,0x6,0x6,0x0,0x0,0x0,0x0,0x6,0x6,};
|
jj_la1_2 = new int[] {0x0,0x10,0x0,0x0,0x1,0x1,0xc,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0xc,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0xc,0x0,0xc,0xc,0x0,0x0,0x0,0x0,0xc,0xc,};
|
||||||
}
|
}
|
||||||
final private JJCalls[] jj_2_rtns = new JJCalls[1];
|
final private JJCalls[] jj_2_rtns = new JJCalls[1];
|
||||||
private boolean jj_rescan = false;
|
private boolean jj_rescan = false;
|
||||||
@ -1135,7 +1152,7 @@ public class Parser implements ParserConstants {
|
|||||||
token = new Token();
|
token = new Token();
|
||||||
jj_ntk = -1;
|
jj_ntk = -1;
|
||||||
jj_gen = 0;
|
jj_gen = 0;
|
||||||
for (int i = 0; i < 41; i++) jj_la1[i] = -1;
|
for (int i = 0; i < 42; i++) jj_la1[i] = -1;
|
||||||
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
|
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1148,7 +1165,7 @@ public class Parser implements ParserConstants {
|
|||||||
token = new Token();
|
token = new Token();
|
||||||
jj_ntk = -1;
|
jj_ntk = -1;
|
||||||
jj_gen = 0;
|
jj_gen = 0;
|
||||||
for (int i = 0; i < 41; i++) jj_la1[i] = -1;
|
for (int i = 0; i < 42; i++) jj_la1[i] = -1;
|
||||||
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
|
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1158,7 +1175,7 @@ public class Parser implements ParserConstants {
|
|||||||
token = new Token();
|
token = new Token();
|
||||||
jj_ntk = -1;
|
jj_ntk = -1;
|
||||||
jj_gen = 0;
|
jj_gen = 0;
|
||||||
for (int i = 0; i < 41; i++) jj_la1[i] = -1;
|
for (int i = 0; i < 42; i++) jj_la1[i] = -1;
|
||||||
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
|
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1168,7 +1185,7 @@ public class Parser implements ParserConstants {
|
|||||||
token = new Token();
|
token = new Token();
|
||||||
jj_ntk = -1;
|
jj_ntk = -1;
|
||||||
jj_gen = 0;
|
jj_gen = 0;
|
||||||
for (int i = 0; i < 41; i++) jj_la1[i] = -1;
|
for (int i = 0; i < 42; i++) jj_la1[i] = -1;
|
||||||
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
|
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1177,7 +1194,7 @@ public class Parser implements ParserConstants {
|
|||||||
token = new Token();
|
token = new Token();
|
||||||
jj_ntk = -1;
|
jj_ntk = -1;
|
||||||
jj_gen = 0;
|
jj_gen = 0;
|
||||||
for (int i = 0; i < 41; i++) jj_la1[i] = -1;
|
for (int i = 0; i < 42; i++) jj_la1[i] = -1;
|
||||||
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
|
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1186,7 +1203,7 @@ public class Parser implements ParserConstants {
|
|||||||
token = new Token();
|
token = new Token();
|
||||||
jj_ntk = -1;
|
jj_ntk = -1;
|
||||||
jj_gen = 0;
|
jj_gen = 0;
|
||||||
for (int i = 0; i < 41; i++) jj_la1[i] = -1;
|
for (int i = 0; i < 42; i++) jj_la1[i] = -1;
|
||||||
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
|
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1297,15 +1314,15 @@ public class Parser implements ParserConstants {
|
|||||||
|
|
||||||
public ParseException generateParseException() {
|
public ParseException generateParseException() {
|
||||||
jj_expentries.removeAllElements();
|
jj_expentries.removeAllElements();
|
||||||
boolean[] la1tokens = new boolean[68];
|
boolean[] la1tokens = new boolean[69];
|
||||||
for (int i = 0; i < 68; i++) {
|
for (int i = 0; i < 69; i++) {
|
||||||
la1tokens[i] = false;
|
la1tokens[i] = false;
|
||||||
}
|
}
|
||||||
if (jj_kind >= 0) {
|
if (jj_kind >= 0) {
|
||||||
la1tokens[jj_kind] = true;
|
la1tokens[jj_kind] = true;
|
||||||
jj_kind = -1;
|
jj_kind = -1;
|
||||||
}
|
}
|
||||||
for (int i = 0; i < 41; i++) {
|
for (int i = 0; i < 42; i++) {
|
||||||
if (jj_la1[i] == jj_gen) {
|
if (jj_la1[i] == jj_gen) {
|
||||||
for (int j = 0; j < 32; j++) {
|
for (int j = 0; j < 32; j++) {
|
||||||
if ((jj_la1_0[i] & (1<<j)) != 0) {
|
if ((jj_la1_0[i] & (1<<j)) != 0) {
|
||||||
@ -1320,7 +1337,7 @@ public class Parser implements ParserConstants {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (int i = 0; i < 68; i++) {
|
for (int i = 0; i < 69; i++) {
|
||||||
if (la1tokens[i]) {
|
if (la1tokens[i]) {
|
||||||
jj_expentry = new int[1];
|
jj_expentry = new int[1];
|
||||||
jj_expentry[0] = i;
|
jj_expentry[0] = i;
|
||||||
|
@ -60,12 +60,13 @@ public interface ParserConstants {
|
|||||||
int NUM_ENTRIES = 58;
|
int NUM_ENTRIES = 58;
|
||||||
int ADD = 59;
|
int ADD = 59;
|
||||||
int CHANGE = 60;
|
int CHANGE = 60;
|
||||||
int ID = 61;
|
int COUNT = 61;
|
||||||
int INTEGER_LITERAL = 62;
|
int ID = 62;
|
||||||
int FLOATING_POINT_LITERAL = 63;
|
int INTEGER_LITERAL = 63;
|
||||||
int EXPONENT = 64;
|
int FLOATING_POINT_LITERAL = 64;
|
||||||
int QUOTED_IDENTIFIER = 65;
|
int EXPONENT = 65;
|
||||||
int STRING_LITERAL = 66;
|
int QUOTED_IDENTIFIER = 66;
|
||||||
|
int STRING_LITERAL = 67;
|
||||||
|
|
||||||
int DEFAULT = 0;
|
int DEFAULT = 0;
|
||||||
|
|
||||||
@ -131,6 +132,7 @@ public interface ParserConstants {
|
|||||||
"\"num_entries\"",
|
"\"num_entries\"",
|
||||||
"\"add\"",
|
"\"add\"",
|
||||||
"\"change\"",
|
"\"change\"",
|
||||||
|
"\"count\"",
|
||||||
"<ID>",
|
"<ID>",
|
||||||
"<INTEGER_LITERAL>",
|
"<INTEGER_LITERAL>",
|
||||||
"<FLOATING_POINT_LITERAL>",
|
"<FLOATING_POINT_LITERAL>",
|
||||||
|
@ -40,114 +40,117 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1)
|
|||||||
switch (pos)
|
switch (pos)
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
if ((active0 & 0x1fffcc0fffffffe0L) != 0L)
|
if ((active0 & 0x3fffcc0fffffffe0L) != 0L)
|
||||||
{
|
{
|
||||||
jjmatchedKind = 61;
|
jjmatchedKind = 62;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
return -1;
|
return -1;
|
||||||
case 1:
|
case 1:
|
||||||
if ((active0 & 0x10080800064000L) != 0L)
|
if ((active0 & 0x3fefc407fff9bfe0L) != 0L)
|
||||||
return 1;
|
|
||||||
if ((active0 & 0x1fefc407fff9bfe0L) != 0L)
|
|
||||||
{
|
{
|
||||||
if (jjmatchedPos != 1)
|
if (jjmatchedPos != 1)
|
||||||
{
|
{
|
||||||
jjmatchedKind = 61;
|
jjmatchedKind = 62;
|
||||||
jjmatchedPos = 1;
|
jjmatchedPos = 1;
|
||||||
}
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
if ((active0 & 0x10080800064000L) != 0L)
|
||||||
|
return 1;
|
||||||
return -1;
|
return -1;
|
||||||
case 2:
|
case 2:
|
||||||
if ((active0 & 0x800040410008000L) != 0L)
|
if ((active0 & 0x37ffc003efff3fe0L) != 0L)
|
||||||
return 1;
|
|
||||||
if ((active0 & 0x17ffc003efff3fe0L) != 0L)
|
|
||||||
{
|
{
|
||||||
jjmatchedKind = 61;
|
jjmatchedKind = 62;
|
||||||
jjmatchedPos = 2;
|
jjmatchedPos = 2;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
if ((active0 & 0x800040410008000L) != 0L)
|
||||||
|
return 1;
|
||||||
return -1;
|
return -1;
|
||||||
case 3:
|
case 3:
|
||||||
if ((active0 & 0x2000004051720L) != 0L)
|
if ((active0 & 0x37fdc003ebfa28c0L) != 0L)
|
||||||
return 1;
|
|
||||||
if ((active0 & 0x17fdc003ebfa28c0L) != 0L)
|
|
||||||
{
|
{
|
||||||
if (jjmatchedPos != 3)
|
if (jjmatchedPos != 3)
|
||||||
{
|
{
|
||||||
jjmatchedKind = 61;
|
jjmatchedKind = 62;
|
||||||
jjmatchedPos = 3;
|
jjmatchedPos = 3;
|
||||||
}
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
if ((active0 & 0x2000004051720L) != 0L)
|
||||||
|
return 1;
|
||||||
return -1;
|
return -1;
|
||||||
case 4:
|
case 4:
|
||||||
if ((active0 & 0x400020a0800c0L) != 0L)
|
if ((active0 & 0x17b9c001e1f22a00L) != 0L)
|
||||||
return 1;
|
|
||||||
if ((active0 & 0x17f9c001e1f22a00L) != 0L)
|
|
||||||
{
|
{
|
||||||
jjmatchedKind = 61;
|
if (jjmatchedPos != 4)
|
||||||
jjmatchedPos = 4;
|
{
|
||||||
|
jjmatchedKind = 62;
|
||||||
|
jjmatchedPos = 4;
|
||||||
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
if ((active0 & 0x204400020a0800c0L) != 0L)
|
||||||
|
return 1;
|
||||||
return -1;
|
return -1;
|
||||||
case 5:
|
case 5:
|
||||||
if ((active0 & 0x1008000020720800L) != 0L)
|
if ((active0 & 0x1008000020720800L) != 0L)
|
||||||
return 1;
|
return 1;
|
||||||
if ((active0 & 0x7f1c001c1802200L) != 0L)
|
if ((active0 & 0x7f1c001c1802200L) != 0L)
|
||||||
{
|
{
|
||||||
jjmatchedKind = 61;
|
jjmatchedKind = 62;
|
||||||
jjmatchedPos = 5;
|
jjmatchedPos = 5;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
return -1;
|
return -1;
|
||||||
case 6:
|
case 6:
|
||||||
|
if ((active0 & 0x800000L) != 0L)
|
||||||
|
return 1;
|
||||||
if ((active0 & 0x7f1c001c1002200L) != 0L)
|
if ((active0 & 0x7f1c001c1002200L) != 0L)
|
||||||
{
|
{
|
||||||
jjmatchedKind = 61;
|
jjmatchedKind = 62;
|
||||||
jjmatchedPos = 6;
|
jjmatchedPos = 6;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
if ((active0 & 0x800000L) != 0L)
|
|
||||||
return 1;
|
|
||||||
return -1;
|
return -1;
|
||||||
case 7:
|
case 7:
|
||||||
|
if ((active0 & 0x200000001002200L) != 0L)
|
||||||
|
return 1;
|
||||||
if ((active0 & 0x5f1c001c0000000L) != 0L)
|
if ((active0 & 0x5f1c001c0000000L) != 0L)
|
||||||
{
|
{
|
||||||
jjmatchedKind = 61;
|
jjmatchedKind = 62;
|
||||||
jjmatchedPos = 7;
|
jjmatchedPos = 7;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
if ((active0 & 0x200000001002200L) != 0L)
|
|
||||||
return 1;
|
|
||||||
return -1;
|
return -1;
|
||||||
case 8:
|
case 8:
|
||||||
|
if ((active0 & 0x10000080000000L) != 0L)
|
||||||
|
return 1;
|
||||||
if ((active0 & 0x5e1c00140000000L) != 0L)
|
if ((active0 & 0x5e1c00140000000L) != 0L)
|
||||||
{
|
{
|
||||||
jjmatchedKind = 61;
|
jjmatchedKind = 62;
|
||||||
jjmatchedPos = 8;
|
jjmatchedPos = 8;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
if ((active0 & 0x10000080000000L) != 0L)
|
|
||||||
return 1;
|
|
||||||
return -1;
|
return -1;
|
||||||
case 9:
|
case 9:
|
||||||
|
if ((active0 & 0x800000000000L) != 0L)
|
||||||
|
return 1;
|
||||||
if ((active0 & 0x5e1400140000000L) != 0L)
|
if ((active0 & 0x5e1400140000000L) != 0L)
|
||||||
{
|
{
|
||||||
jjmatchedKind = 61;
|
jjmatchedKind = 62;
|
||||||
jjmatchedPos = 9;
|
jjmatchedPos = 9;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
if ((active0 & 0x800000000000L) != 0L)
|
|
||||||
return 1;
|
|
||||||
return -1;
|
return -1;
|
||||||
case 10:
|
case 10:
|
||||||
if ((active0 & 0x521000000000000L) != 0L)
|
if ((active0 & 0x521000000000000L) != 0L)
|
||||||
return 1;
|
return 1;
|
||||||
if ((active0 & 0xc0400140000000L) != 0L)
|
if ((active0 & 0xc0400140000000L) != 0L)
|
||||||
{
|
{
|
||||||
jjmatchedKind = 61;
|
jjmatchedKind = 62;
|
||||||
jjmatchedPos = 10;
|
jjmatchedPos = 10;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -157,7 +160,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1)
|
|||||||
return 1;
|
return 1;
|
||||||
if ((active0 & 0xc0000040000000L) != 0L)
|
if ((active0 & 0xc0000040000000L) != 0L)
|
||||||
{
|
{
|
||||||
jjmatchedKind = 61;
|
jjmatchedKind = 62;
|
||||||
jjmatchedPos = 11;
|
jjmatchedPos = 11;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -165,7 +168,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1)
|
|||||||
case 12:
|
case 12:
|
||||||
if ((active0 & 0xc0000040000000L) != 0L)
|
if ((active0 & 0xc0000040000000L) != 0L)
|
||||||
{
|
{
|
||||||
jjmatchedKind = 61;
|
jjmatchedKind = 62;
|
||||||
jjmatchedPos = 12;
|
jjmatchedPos = 12;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -175,7 +178,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1)
|
|||||||
return 1;
|
return 1;
|
||||||
if ((active0 & 0xc0000000000000L) != 0L)
|
if ((active0 & 0xc0000000000000L) != 0L)
|
||||||
{
|
{
|
||||||
jjmatchedKind = 61;
|
jjmatchedKind = 62;
|
||||||
jjmatchedPos = 13;
|
jjmatchedPos = 13;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -183,7 +186,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1)
|
|||||||
case 14:
|
case 14:
|
||||||
if ((active0 & 0xc0000000000000L) != 0L)
|
if ((active0 & 0xc0000000000000L) != 0L)
|
||||||
{
|
{
|
||||||
jjmatchedKind = 61;
|
jjmatchedKind = 62;
|
||||||
jjmatchedPos = 14;
|
jjmatchedPos = 14;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -191,7 +194,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1)
|
|||||||
case 15:
|
case 15:
|
||||||
if ((active0 & 0xc0000000000000L) != 0L)
|
if ((active0 & 0xc0000000000000L) != 0L)
|
||||||
{
|
{
|
||||||
jjmatchedKind = 61;
|
jjmatchedKind = 62;
|
||||||
jjmatchedPos = 15;
|
jjmatchedPos = 15;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -199,7 +202,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1)
|
|||||||
case 16:
|
case 16:
|
||||||
if ((active0 & 0xc0000000000000L) != 0L)
|
if ((active0 & 0xc0000000000000L) != 0L)
|
||||||
{
|
{
|
||||||
jjmatchedKind = 61;
|
jjmatchedKind = 62;
|
||||||
jjmatchedPos = 16;
|
jjmatchedPos = 16;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -207,7 +210,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1)
|
|||||||
case 17:
|
case 17:
|
||||||
if ((active0 & 0xc0000000000000L) != 0L)
|
if ((active0 & 0xc0000000000000L) != 0L)
|
||||||
{
|
{
|
||||||
jjmatchedKind = 61;
|
jjmatchedKind = 62;
|
||||||
jjmatchedPos = 17;
|
jjmatchedPos = 17;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -215,7 +218,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1)
|
|||||||
case 18:
|
case 18:
|
||||||
if ((active0 & 0xc0000000000000L) != 0L)
|
if ((active0 & 0xc0000000000000L) != 0L)
|
||||||
{
|
{
|
||||||
jjmatchedKind = 61;
|
jjmatchedKind = 62;
|
||||||
jjmatchedPos = 18;
|
jjmatchedPos = 18;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -223,7 +226,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1)
|
|||||||
case 19:
|
case 19:
|
||||||
if ((active0 & 0x80000000000000L) != 0L)
|
if ((active0 & 0x80000000000000L) != 0L)
|
||||||
{
|
{
|
||||||
jjmatchedKind = 61;
|
jjmatchedKind = 62;
|
||||||
jjmatchedPos = 19;
|
jjmatchedPos = 19;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -267,7 +270,7 @@ private final int jjMoveStringLiteralDfa0_0()
|
|||||||
case 44:
|
case 44:
|
||||||
return jjStopAtPos(0, 36);
|
return jjStopAtPos(0, 36);
|
||||||
case 59:
|
case 59:
|
||||||
return jjStopAtPos(0, 67);
|
return jjStopAtPos(0, 68);
|
||||||
case 60:
|
case 60:
|
||||||
return jjStopAtPos(0, 41);
|
return jjStopAtPos(0, 41);
|
||||||
case 61:
|
case 61:
|
||||||
@ -282,7 +285,7 @@ private final int jjMoveStringLiteralDfa0_0()
|
|||||||
return jjMoveStringLiteralDfa1_0(0x24000000000000L);
|
return jjMoveStringLiteralDfa1_0(0x24000000000000L);
|
||||||
case 67:
|
case 67:
|
||||||
case 99:
|
case 99:
|
||||||
return jjMoveStringLiteralDfa1_0(0x1041000040000880L);
|
return jjMoveStringLiteralDfa1_0(0x3041000040000880L);
|
||||||
case 68:
|
case 68:
|
||||||
case 100:
|
case 100:
|
||||||
return jjMoveStringLiteralDfa1_0(0x901600L);
|
return jjMoveStringLiteralDfa1_0(0x901600L);
|
||||||
@ -376,7 +379,7 @@ private final int jjMoveStringLiteralDfa1_0(long active0)
|
|||||||
return jjMoveStringLiteralDfa2_0(active0, 0x10000408460000L);
|
return jjMoveStringLiteralDfa2_0(active0, 0x10000408460000L);
|
||||||
case 79:
|
case 79:
|
||||||
case 111:
|
case 111:
|
||||||
return jjMoveStringLiteralDfa2_0(active0, 0x43040050000000L);
|
return jjMoveStringLiteralDfa2_0(active0, 0x2043040050000000L);
|
||||||
case 82:
|
case 82:
|
||||||
case 114:
|
case 114:
|
||||||
if ((active0 & 0x800000000L) != 0L)
|
if ((active0 & 0x800000000L) != 0L)
|
||||||
@ -463,7 +466,7 @@ private final int jjMoveStringLiteralDfa2_0(long old0, long active0)
|
|||||||
return jjMoveStringLiteralDfa3_0(active0, 0x80000008040040L);
|
return jjMoveStringLiteralDfa3_0(active0, 0x80000008040040L);
|
||||||
case 85:
|
case 85:
|
||||||
case 117:
|
case 117:
|
||||||
return jjMoveStringLiteralDfa3_0(active0, 0x40000000002000L);
|
return jjMoveStringLiteralDfa3_0(active0, 0x2040000000002000L);
|
||||||
case 87:
|
case 87:
|
||||||
case 119:
|
case 119:
|
||||||
if ((active0 & 0x10000000L) != 0L)
|
if ((active0 & 0x10000000L) != 0L)
|
||||||
@ -522,7 +525,7 @@ private final int jjMoveStringLiteralDfa3_0(long old0, long active0)
|
|||||||
return jjMoveStringLiteralDfa4_0(active0, 0x10000000000000L);
|
return jjMoveStringLiteralDfa4_0(active0, 0x10000000000000L);
|
||||||
case 78:
|
case 78:
|
||||||
case 110:
|
case 110:
|
||||||
return jjMoveStringLiteralDfa4_0(active0, 0x1040000000002000L);
|
return jjMoveStringLiteralDfa4_0(active0, 0x3040000000002000L);
|
||||||
case 79:
|
case 79:
|
||||||
case 111:
|
case 111:
|
||||||
if ((active0 & 0x40000L) != 0L)
|
if ((active0 & 0x40000L) != 0L)
|
||||||
@ -616,6 +619,11 @@ private final int jjMoveStringLiteralDfa4_0(long old0, long active0)
|
|||||||
case 116:
|
case 116:
|
||||||
if ((active0 & 0x200000000L) != 0L)
|
if ((active0 & 0x200000000L) != 0L)
|
||||||
return jjStartNfaWithStates_0(4, 33, 1);
|
return jjStartNfaWithStates_0(4, 33, 1);
|
||||||
|
else if ((active0 & 0x2000000000000000L) != 0L)
|
||||||
|
{
|
||||||
|
jjmatchedKind = 61;
|
||||||
|
jjmatchedPos = 4;
|
||||||
|
}
|
||||||
return jjMoveStringLiteralDfa5_0(active0, 0x40000001100800L);
|
return jjMoveStringLiteralDfa5_0(active0, 0x40000001100800L);
|
||||||
case 85:
|
case 85:
|
||||||
case 117:
|
case 117:
|
||||||
@ -1208,14 +1216,14 @@ private final int jjMoveNfa_0(int startState, int curPos)
|
|||||||
case 0:
|
case 0:
|
||||||
if ((0x3ff000000000000L & l) != 0L)
|
if ((0x3ff000000000000L & l) != 0L)
|
||||||
{
|
{
|
||||||
if (kind > 62)
|
if (kind > 63)
|
||||||
kind = 62;
|
kind = 63;
|
||||||
jjCheckNAddStates(0, 6);
|
jjCheckNAddStates(0, 6);
|
||||||
}
|
}
|
||||||
else if ((0x400e00000000000L & l) != 0L)
|
else if ((0x400e00000000000L & l) != 0L)
|
||||||
{
|
{
|
||||||
if (kind > 61)
|
if (kind > 62)
|
||||||
kind = 61;
|
kind = 62;
|
||||||
jjCheckNAdd(1);
|
jjCheckNAdd(1);
|
||||||
}
|
}
|
||||||
else if (curChar == 39)
|
else if (curChar == 39)
|
||||||
@ -1228,8 +1236,8 @@ private final int jjMoveNfa_0(int startState, int curPos)
|
|||||||
case 1:
|
case 1:
|
||||||
if ((0x7ffe00000000000L & l) == 0L)
|
if ((0x7ffe00000000000L & l) == 0L)
|
||||||
break;
|
break;
|
||||||
if (kind > 61)
|
if (kind > 62)
|
||||||
kind = 61;
|
kind = 62;
|
||||||
jjCheckNAdd(1);
|
jjCheckNAdd(1);
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
@ -1239,8 +1247,8 @@ private final int jjMoveNfa_0(int startState, int curPos)
|
|||||||
case 3:
|
case 3:
|
||||||
if ((0x3ff000000000000L & l) == 0L)
|
if ((0x3ff000000000000L & l) == 0L)
|
||||||
break;
|
break;
|
||||||
if (kind > 63)
|
if (kind > 64)
|
||||||
kind = 63;
|
kind = 64;
|
||||||
jjCheckNAddTwoStates(3, 4);
|
jjCheckNAddTwoStates(3, 4);
|
||||||
break;
|
break;
|
||||||
case 5:
|
case 5:
|
||||||
@ -1250,8 +1258,8 @@ private final int jjMoveNfa_0(int startState, int curPos)
|
|||||||
case 6:
|
case 6:
|
||||||
if ((0x3ff000000000000L & l) == 0L)
|
if ((0x3ff000000000000L & l) == 0L)
|
||||||
break;
|
break;
|
||||||
if (kind > 63)
|
if (kind > 64)
|
||||||
kind = 63;
|
kind = 64;
|
||||||
jjCheckNAdd(6);
|
jjCheckNAdd(6);
|
||||||
break;
|
break;
|
||||||
case 7:
|
case 7:
|
||||||
@ -1263,8 +1271,8 @@ private final int jjMoveNfa_0(int startState, int curPos)
|
|||||||
jjCheckNAddTwoStates(8, 9);
|
jjCheckNAddTwoStates(8, 9);
|
||||||
break;
|
break;
|
||||||
case 9:
|
case 9:
|
||||||
if (curChar == 34 && kind > 65)
|
if (curChar == 34 && kind > 66)
|
||||||
kind = 65;
|
kind = 66;
|
||||||
break;
|
break;
|
||||||
case 10:
|
case 10:
|
||||||
if (curChar == 39)
|
if (curChar == 39)
|
||||||
@ -1287,21 +1295,21 @@ private final int jjMoveNfa_0(int startState, int curPos)
|
|||||||
jjCheckNAddStates(10, 12);
|
jjCheckNAddStates(10, 12);
|
||||||
break;
|
break;
|
||||||
case 15:
|
case 15:
|
||||||
if (curChar == 39 && kind > 66)
|
if (curChar == 39 && kind > 67)
|
||||||
kind = 66;
|
kind = 67;
|
||||||
break;
|
break;
|
||||||
case 16:
|
case 16:
|
||||||
if ((0x3ff000000000000L & l) == 0L)
|
if ((0x3ff000000000000L & l) == 0L)
|
||||||
break;
|
break;
|
||||||
if (kind > 62)
|
if (kind > 63)
|
||||||
kind = 62;
|
kind = 63;
|
||||||
jjCheckNAddStates(0, 6);
|
jjCheckNAddStates(0, 6);
|
||||||
break;
|
break;
|
||||||
case 17:
|
case 17:
|
||||||
if ((0x3ff000000000000L & l) == 0L)
|
if ((0x3ff000000000000L & l) == 0L)
|
||||||
break;
|
break;
|
||||||
if (kind > 62)
|
if (kind > 63)
|
||||||
kind = 62;
|
kind = 63;
|
||||||
jjCheckNAdd(17);
|
jjCheckNAdd(17);
|
||||||
break;
|
break;
|
||||||
case 18:
|
case 18:
|
||||||
@ -1315,8 +1323,8 @@ private final int jjMoveNfa_0(int startState, int curPos)
|
|||||||
case 20:
|
case 20:
|
||||||
if ((0x3ff000000000000L & l) == 0L)
|
if ((0x3ff000000000000L & l) == 0L)
|
||||||
break;
|
break;
|
||||||
if (kind > 63)
|
if (kind > 64)
|
||||||
kind = 63;
|
kind = 64;
|
||||||
jjCheckNAddTwoStates(20, 21);
|
jjCheckNAddTwoStates(20, 21);
|
||||||
break;
|
break;
|
||||||
case 22:
|
case 22:
|
||||||
@ -1326,8 +1334,8 @@ private final int jjMoveNfa_0(int startState, int curPos)
|
|||||||
case 23:
|
case 23:
|
||||||
if ((0x3ff000000000000L & l) == 0L)
|
if ((0x3ff000000000000L & l) == 0L)
|
||||||
break;
|
break;
|
||||||
if (kind > 63)
|
if (kind > 64)
|
||||||
kind = 63;
|
kind = 64;
|
||||||
jjCheckNAdd(23);
|
jjCheckNAdd(23);
|
||||||
break;
|
break;
|
||||||
case 24:
|
case 24:
|
||||||
@ -1341,15 +1349,15 @@ private final int jjMoveNfa_0(int startState, int curPos)
|
|||||||
case 27:
|
case 27:
|
||||||
if ((0x3ff000000000000L & l) == 0L)
|
if ((0x3ff000000000000L & l) == 0L)
|
||||||
break;
|
break;
|
||||||
if (kind > 63)
|
if (kind > 64)
|
||||||
kind = 63;
|
kind = 64;
|
||||||
jjCheckNAdd(27);
|
jjCheckNAdd(27);
|
||||||
break;
|
break;
|
||||||
case 28:
|
case 28:
|
||||||
if ((0x3ff000000000000L & l) == 0L)
|
if ((0x3ff000000000000L & l) == 0L)
|
||||||
break;
|
break;
|
||||||
if (kind > 63)
|
if (kind > 64)
|
||||||
kind = 63;
|
kind = 64;
|
||||||
jjCheckNAddTwoStates(28, 29);
|
jjCheckNAddTwoStates(28, 29);
|
||||||
break;
|
break;
|
||||||
case 30:
|
case 30:
|
||||||
@ -1359,8 +1367,8 @@ private final int jjMoveNfa_0(int startState, int curPos)
|
|||||||
case 31:
|
case 31:
|
||||||
if ((0x3ff000000000000L & l) == 0L)
|
if ((0x3ff000000000000L & l) == 0L)
|
||||||
break;
|
break;
|
||||||
if (kind > 63)
|
if (kind > 64)
|
||||||
kind = 63;
|
kind = 64;
|
||||||
jjCheckNAdd(31);
|
jjCheckNAdd(31);
|
||||||
break;
|
break;
|
||||||
default : break;
|
default : break;
|
||||||
@ -1378,8 +1386,8 @@ private final int jjMoveNfa_0(int startState, int curPos)
|
|||||||
case 1:
|
case 1:
|
||||||
if ((0x47fffffe87fffffeL & l) == 0L)
|
if ((0x47fffffe87fffffeL & l) == 0L)
|
||||||
break;
|
break;
|
||||||
if (kind > 61)
|
if (kind > 62)
|
||||||
kind = 61;
|
kind = 62;
|
||||||
jjCheckNAdd(1);
|
jjCheckNAdd(1);
|
||||||
break;
|
break;
|
||||||
case 4:
|
case 4:
|
||||||
@ -1458,12 +1466,12 @@ null, null, null, null, null, null, null, null, null, null, null, null, null, nu
|
|||||||
null, null, null, null, null, null, null, null, null, "\54", "\50", "\51", "\75",
|
null, null, null, null, null, null, null, null, null, "\54", "\50", "\51", "\75",
|
||||||
"\76", "\74", null, null, "\41\75", "\52", null, null, null, null, null, null, null,
|
"\76", "\74", null, null, "\41\75", "\52", null, null, null, null, null, null, null,
|
||||||
null, null, null, null, null, null, null, null, null, null, null, null, null, null,
|
null, null, null, null, null, null, null, null, null, null, null, null, null, null,
|
||||||
"\73", };
|
null, "\73", };
|
||||||
public static final String[] lexStateNames = {
|
public static final String[] lexStateNames = {
|
||||||
"DEFAULT",
|
"DEFAULT",
|
||||||
};
|
};
|
||||||
static final long[] jjtoToken = {
|
static final long[] jjtoToken = {
|
||||||
0xffffffffffffffe1L, 0xeL,
|
0xffffffffffffffe1L, 0x1dL,
|
||||||
};
|
};
|
||||||
static final long[] jjtoSkip = {
|
static final long[] jjtoSkip = {
|
||||||
0x1eL, 0x0L,
|
0x1eL, 0x0L,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user