()
| 1058 | } |
| 1059 | |
| 1060 | final public void AmbiguousName() throws ParseException { |
| 1061 | /*@bgen(jjtree) AmbiguousName */ |
| 1062 | BSHAmbiguousName jjtn000 = new BSHAmbiguousName(JJTAMBIGUOUSNAME); |
| 1063 | boolean jjtc000 = true; |
| 1064 | jjtree.openNodeScope(jjtn000); |
| 1065 | jjtreeOpenNodeScope(jjtn000);Token t; |
| 1066 | StringBuilder s; |
| 1067 | try { |
| 1068 | t = jj_consume_token(IDENTIFIER); |
| 1069 | s = new StringBuilder(t.image); |
| 1070 | label_5: |
| 1071 | while (true) { |
| 1072 | if (jj_2_7(2)) { |
| 1073 | ; |
| 1074 | } else { |
| 1075 | break label_5; |
| 1076 | } |
| 1077 | jj_consume_token(DOT); |
| 1078 | t = jj_consume_token(IDENTIFIER); |
| 1079 | s.append("."+t.image); |
| 1080 | } |
| 1081 | jjtree.closeNodeScope(jjtn000, true); |
| 1082 | jjtc000 = false; |
| 1083 | jjtreeCloseNodeScope(jjtn000); |
| 1084 | jjtn000.text = s.toString(); |
| 1085 | } finally { |
| 1086 | if (jjtc000) { |
| 1087 | jjtree.closeNodeScope(jjtn000, true); |
| 1088 | jjtreeCloseNodeScope(jjtn000); |
| 1089 | } |
| 1090 | } |
| 1091 | } |
| 1092 | |
| 1093 | final public int NameList() throws ParseException { |
| 1094 | int count = 0; |
no test coverage detected