소스 검색

Add missing break in execution switch

The & command was mssing a break at its end.
ApisNecros 1 년 전
부모
커밋
253c48a5f5
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  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();