(ctx *glsp.Context)
| 159 | } |
| 160 | |
| 161 | func (s *Server) shutdown(ctx *glsp.Context) error { |
| 162 | _, _ = s.telemetry.Publish(context.Background()) |
| 163 | protocol.SetTraceValue(protocol.TraceValueOff) |
| 164 | return nil |
| 165 | } |
| 166 | |
| 167 | func (s *Server) setTrace(context *glsp.Context, params *protocol.SetTraceParams) error { |
| 168 | protocol.SetTraceValue(params.Value) |
nothing calls this directly
no test coverage detected