ab2bf419-ecd0-41c6-a1bc-d6d9b4bec538.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. "use strict";
  2. cc._RF.push(module, 'ab2bfQZ7NBBxqG81tm0vsU4', 'SyncMacroCommand');
  3. // lightMVC/core/command/SyncMacroCommand.ts
  4. "use strict";
  5. var __extends = (this && this.__extends) || (function () {
  6. var extendStatics = function (d, b) {
  7. extendStatics = Object.setPrototypeOf ||
  8. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  9. function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
  10. return extendStatics(d, b);
  11. };
  12. return function (d, b) {
  13. extendStatics(d, b);
  14. function __() { this.constructor = d; }
  15. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  16. };
  17. })();
  18. Object.defineProperty(exports, "__esModule", { value: true });
  19. /**
  20. * 同步组合宏命令基类
  21. * 该组合宏中的子命令是同步执行的,会按照添加的顺序同步执行。
  22. */
  23. var MacroCommand_1 = require("./MacroCommand");
  24. var SyncMacroCommand = /** @class */ (function (_super) {
  25. __extends(SyncMacroCommand, _super);
  26. function SyncMacroCommand() {
  27. return _super !== null && _super.apply(this, arguments) || this;
  28. }
  29. return SyncMacroCommand;
  30. }(MacroCommand_1.default));
  31. exports.default = SyncMacroCommand;
  32. cc._RF.pop();