mirror of
https://github.com/golang/go
synced 2024-11-18 18:54:42 -07:00
5f9351755f
For all uses inside the lsp we use the detatch logic instead For tests we build it in the test harness instead This is in preparation for things on the context becomming important Change-Id: I7e6910e0d3581b82abbeeb09f9c22a99efb73142 Reviewed-on: https://go-review.googlesource.com/c/tools/+/185677 Run-TryBot: Ian Cottrell <iancottrell@google.com> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
37 lines
883 B
Go
37 lines
883 B
Go
// Copyright 2019 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package lsp
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"golang.org/x/tools/internal/lsp/protocol"
|
|
"golang.org/x/tools/internal/span"
|
|
)
|
|
|
|
func (s *Server) changeFolders(ctx context.Context, event protocol.WorkspaceFoldersChangeEvent) error {
|
|
for _, folder := range event.Removed {
|
|
view := s.session.View(folder.Name)
|
|
if view != nil {
|
|
view.Shutdown(ctx)
|
|
} else {
|
|
return fmt.Errorf("view %s for %v not found", folder.Name, folder.URI)
|
|
}
|
|
}
|
|
|
|
for _, folder := range event.Added {
|
|
if err := s.addView(ctx, folder.Name, span.NewURI(folder.URI)); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (s *Server) addView(ctx context.Context, name string, uri span.URI) error {
|
|
s.session.NewView(ctx, name, uri)
|
|
return nil
|
|
}
|