(context, { to, eventName, details })
| 6870 | return new _SendCommand(eventName, details, toExpr); |
| 6871 | } |
| 6872 | resolve(context, { to, eventName, details }) { |
| 6873 | context.meta.runtime.nullCheck(to, this.toExpr); |
| 6874 | context.meta.runtime.implicitLoop(to, function(target) { |
| 6875 | context.meta.runtime.triggerEvent(target, eventName, details, context.me); |
| 6876 | }); |
| 6877 | return this.findNext(context); |
| 6878 | } |
| 6879 | }; |
| 6880 | var EventName = class _EventName extends Expression { |
| 6881 | static grammarName = "eventName"; |
nothing calls this directly
no test coverage detected