(context, { to, eventName, details })
| 6513 | return new _SendCommand(eventName, details, toExpr); |
| 6514 | } |
| 6515 | resolve(context, { to, eventName, details }) { |
| 6516 | context.meta.runtime.nullCheck(to, this.toExpr); |
| 6517 | context.meta.runtime.implicitLoop(to, function(target) { |
| 6518 | context.meta.runtime.triggerEvent(target, eventName, details, context.me); |
| 6519 | }); |
| 6520 | return this.findNext(context); |
| 6521 | } |
| 6522 | }; |
| 6523 | var EventName = class _EventName extends Expression { |
| 6524 | static grammarName = "eventName"; |
nothing calls this directly
no test coverage detected