* @static actions - Returns the list of registered Actions. * * @return {Action[]} - List of registered Actions
()
| 877 | * @return {Action[]} - List of registered Actions |
| 878 | */ |
| 879 | static actions () { |
| 880 | /** @type {boolean} */ |
| 881 | const experimentalFeatures = this.setting ('ExperimentalFeatures'); |
| 882 | |
| 883 | return this._actions.filter(action => { |
| 884 | return action._experimental === false || experimentalFeatures === true; |
| 885 | }); |
| 886 | } |
| 887 | |
| 888 | /** |
| 889 | * @static action - Access to an specific action class |