} else if (token instanceof SakuraScriptToken.Open) {
      const handler = SakuraScriptController._openHandler[token.command as "communicatebox" | "inputbox"];
      if (handler) handler.bind(this)(token);
    } else if (token instanceof SakuraScriptToken.Close) {
      const handler = SakuraScriptController._closeHandler[token.command];