(target, source, args, runtime)
| 93 | this.messageHandler = messageHandler; |
| 94 | } |
| 95 | install(target, source, args, runtime) { |
| 96 | this.runtime = runtime; |
| 97 | runtime.assignToNamespace(target, this.nameSpace, this.socketName, this.socketObject); |
| 98 | } |
| 99 | static parse(parser) { |
| 100 | if (!parser.matchToken("socket")) return; |
| 101 | var name = parser.requireElement("dotOrColonPath"); |
nothing calls this directly
no test coverage detected