(target, source, args, runtime)
| 134 | this.stub = stub; |
| 135 | } |
| 136 | install(target, source, args, runtime) { |
| 137 | this.runtime = runtime; |
| 138 | runtime.assignToNamespace(target, this.nameSpace, this.eventSourceName, this.stub); |
| 139 | } |
| 140 | static parse(parser) { |
| 141 | if (!parser.matchToken("eventsource")) return; |
| 142 | var urlElement; |
nothing calls this directly
no test coverage detected