()
| 987 | } |
| 988 | |
| 989 | getSequences() { |
| 990 | const _actions = [] |
| 991 | this.sequences_.forEach((actions, device) => { |
| 992 | if (!isIdle(actions)) { |
| 993 | actions = actions.concat() |
| 994 | _actions.push(Object.assign({ actions }, device.toJSON())) |
| 995 | } |
| 996 | }) |
| 997 | |
| 998 | return _actions |
| 999 | } |
| 1000 | } |
| 1001 | |
| 1002 | /** |
no test coverage detected