| // Copyright 2020 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. |
| "golang.org/x/tools/gopls/internal/lsp/protocol" |
| "golang.org/x/tools/gopls/internal/lsp/source" |
| "golang.org/x/tools/internal/event" |
| func Format(ctx context.Context, snapshot source.Snapshot, fh source.FileHandle) ([]protocol.TextEdit, error) { |
| ctx, done := event.Start(ctx, "mod.Format") |
| pm, err := snapshot.ParseMod(ctx, fh) |
| formatted, err := pm.File.Format() |
| // Calculate the edits to be made due to the change. |
| diffs := snapshot.View().Options().ComputeEdits(string(pm.Mapper.Content), string(formatted)) |
| return source.ToProtocolEdits(pm.Mapper, diffs) |