(type:string, args:any, callback:any)
| 3127 | } |
| 3128 | |
| 3129 | send(type:string, args:any, callback:any) { |
| 3130 | let id = LanguageService._requestId++; |
| 3131 | args.requestId = id; |
| 3132 | this._listeners[id] = callback; |
| 3133 | args.type = type; |
| 3134 | //console.log("SENT", args); |
| 3135 | client.send(args); |
| 3136 | } |
| 3137 | |
| 3138 | handleMessage = (message) => { |
| 3139 | let type = message.type; |
no test coverage detected