File tree 1 file changed +2
-2
lines changed
electrum/src/main/java/edu/mit/csail/sdg/alloy4compiler/parser
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2638,13 +2638,13 @@ public java_cup.runtime.Symbol do_action(
2638
2638
for (_done_parsing = false; !_done_parsing; ) {
2639
2639
act = get_action(((Symbol)stack.peek()).parse_state, cur_token.sym);
2640
2640
if (act > 0) { // "shift"; thus, we shift to the encoded state by pushing it on the stack
2641
- if (logging) System.out.println("shift " + cur_token.sym);
2641
+ // if (logging) System.out.println("shift " + cur_token.sym);
2642
2642
cur_token.parse_state = act-1;
2643
2643
stack.push(cur_token);
2644
2644
tos++;
2645
2645
cur_token = scan();
2646
2646
} else if (act<0) { // "reduce"
2647
- if (logging) System.out.println("reduce " + ((-act)-1));
2647
+ // if (logging) System.out.println("reduce " + ((-act)-1));
2648
2648
lhs_sym = do_action((-act)-1, this, stack, tos);
2649
2649
lhs_sym_num = production_tab[(-act)-1][0];
2650
2650
handle_size = production_tab[(-act)-1][1];
You can’t perform that action at this time.
0 commit comments