(s, o)
| 31491 | : this.system.components |
| 31492 | } |
| 31493 | getBoundSelectors(s, o) { |
| 31494 | return objMap(this.getSelectors(), (i, a) => { |
| 31495 | let u = [a.slice(0, -9)] |
| 31496 | return objMap(i, (i) => (...a) => { |
| 31497 | let _ = wrapWithTryCatch(i, this.getSystem).apply(null, [s().getIn(u), ...a]) |
| 31498 | return ('function' == typeof _ && (_ = wrapWithTryCatch(_, this.getSystem)(o())), _) |
| 31499 | }) |
| 31500 | }) |
| 31501 | } |
| 31502 | getBoundActions(s) { |
| 31503 | s = s || this.getStore().dispatch |
| 31504 | const o = this.getActions(), |
no test coverage detected