|
Lines 1-5
Link Here
|
| 1 |
/******************************************************************************* |
1 |
/******************************************************************************* |
| 2 |
* Copyright (c) 2000, 2008 IBM Corporation and others. |
2 |
* Copyright (c) 2000, 2010 IBM Corporation and others. |
| 3 |
* All rights reserved. This program and the accompanying materials |
3 |
* All rights reserved. This program and the accompanying materials |
| 4 |
* are made available under the terms of the Eclipse Public License v1.0 |
4 |
* are made available under the terms of the Eclipse Public License v1.0 |
| 5 |
* which accompanies this distribution, and is available at |
5 |
* which accompanies this distribution, and is available at |
|
Lines 3651-3670
Link Here
|
| 3651 |
return TokenNameIdentifier; |
3651 |
return TokenNameIdentifier; |
| 3652 |
} |
3652 |
} |
| 3653 |
|
3653 |
|
| 3654 |
case 'u' : //goto |
3654 |
// case 'u' : //goto |
| 3655 |
if (length == 9) { |
3655 |
// if (length == 9) { |
| 3656 |
if ((data[++index] == 'n') |
3656 |
// if ((data[++index] == 'n') |
| 3657 |
&& (data[++index] == 'd') |
3657 |
// && (data[++index] == 'd') |
| 3658 |
&& (data[++index] == 'e') |
3658 |
// && (data[++index] == 'e') |
| 3659 |
&& (data[++index] == 'f') |
3659 |
// && (data[++index] == 'f') |
| 3660 |
&& (data[++index] == 'i') |
3660 |
// && (data[++index] == 'i') |
| 3661 |
&& (data[++index] == 'n') |
3661 |
// && (data[++index] == 'n') |
| 3662 |
&& (data[++index] == 'e') |
3662 |
// && (data[++index] == 'e') |
| 3663 |
&& (data[++index] == 'd')) { |
3663 |
// && (data[++index] == 'd')) { |
| 3664 |
return TokenNameundefined; |
3664 |
// return TokenNameIdentifier; |
| 3665 |
} |
3665 |
// } |
| 3666 |
} //no goto in java are allowed, so why java removes this keyword ??? |
3666 |
// } //no goto in java are allowed, so why java removes this keyword ??? |
| 3667 |
return TokenNameIdentifier; |
3667 |
// return TokenNameIdentifier; |
| 3668 |
|
3668 |
|
| 3669 |
case 'v' : //void volatile |
3669 |
case 'v' : //void volatile |
| 3670 |
switch (length) { |
3670 |
switch (length) { |