()
| 111 | } |
| 112 | |
| 113 | private setupStatusItem() { |
| 114 | const statusItem = this.statusItem; |
| 115 | statusItem.text = "Dart Language Server Starting…"; |
| 116 | |
| 117 | statusItem.command = { |
| 118 | command: "dart.restartAnalysisServer", |
| 119 | title: "restart", |
| 120 | tooltip: "Restarts the Dart Language Server", |
| 121 | }; |
| 122 | } |
| 123 | |
| 124 | private buildMiddleware(): ls.Middleware { |
| 125 | // Why need this 🤷♂️? |