(context?: ModuleContext)
| 671 | } |
| 672 | |
| 673 | public _onLivesync(context?: ModuleContext): boolean { |
| 674 | if (super._onLivesync(context)) { |
| 675 | return true; |
| 676 | } |
| 677 | |
| 678 | // Fallback |
| 679 | if (!context) { |
| 680 | return this._onLivesyncWithoutContext(); |
| 681 | } |
| 682 | |
| 683 | return false; |
| 684 | } |
| 685 | |
| 686 | public _handleLivesync(context?: ModuleContext): boolean { |
| 687 | if (super._handleLivesync(context)) { |
no test coverage detected