(params)
| 647 | } |
| 648 | |
| 649 | eventDataException(params) { |
| 650 | switch (params.data.type) { |
| 651 | case "string": { |
| 652 | return params.data.value; |
| 653 | } |
| 654 | case "object": { |
| 655 | const props = this.getProperties(params.data.objectId); |
| 656 | return this.propertiesToObject(props); |
| 657 | } |
| 658 | default: { |
| 659 | return undefined; |
| 660 | } |
| 661 | } |
| 662 | } |
| 663 | |
| 664 | eventDataScriptSource(id) { |
| 665 | const {msgid, msg} = this.createMessage( |
no test coverage detected