File tree 1 file changed +3
-2
lines changed
org.metaborg.sdf2table/src/main/java/org/metaborg/sdf2table/parsetable
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ private void calculateFollow() {
235
235
for (ISymbol s : symbols ) {
236
236
for (IProduction p : symbolProductionsMapping .get (s )) {
237
237
List <ISymbol > rightHand = p .rightHand ();
238
- for (int i = 0 , rightHandSize = rightHand .size (); i < rightHandSize ; i ++) {
238
+ i : for (int i = 0 , rightHandSize = rightHand .size (); i < rightHandSize ; i ++) {
239
239
ISymbol symbolI = rightHand .get (i );
240
240
241
241
// If p is of the shape A = A0 ... Ai Ak ... Am Aj ... An
@@ -244,8 +244,9 @@ private void calculateFollow() {
244
244
ISymbol symbolJ = rightHand .get (j );
245
245
containsTheFirstOf .put (symbolI , symbolJ );
246
246
247
+ // If Ak ... An are NOT all nullable, continue with next Ai
247
248
if (!symbolJ .isNullable ())
248
- break ;
249
+ continue i ;
249
250
}
250
251
251
252
// If Ak ... An are all nullable, FOLLOW(Ai) contains FOLLOW(A)
You can’t perform that action at this time.
0 commit comments