Sfoglia il codice sorgente

Add missing break in execution switch

The & command was mssing a break at its end.
ApisNecros 1 anno fa
parent
commit
253c48a5f5
1 ha cambiato i file con 1 aggiunte e 0 eliminazioni
  1. 1 0
      starfish.js

+ 1 - 0
starfish.js

@@ -312,6 +312,7 @@ class CodeBox {
                         this.stacks[this.curr_stack].Push(this.stacks[this.curr_stack].register);
                         this.stacks[this.curr_stack].register = null;
                     }
+                    break;
                 }
                 case ":":
                     this.stacks[this.curr_stack].Duplicate();