2018-11-02 16:10:49 -06:00
|
|
|
// Copyright 2018 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 source
|
|
|
|
|
|
|
|
import (
|
|
|
|
"go/ast"
|
|
|
|
"go/token"
|
2018-11-07 13:21:31 -07:00
|
|
|
|
|
|
|
"golang.org/x/tools/go/packages"
|
2018-11-02 16:10:49 -06:00
|
|
|
)
|
|
|
|
|
2018-12-18 13:46:14 -07:00
|
|
|
// View abstracts the underlying architecture of the package using the source
|
|
|
|
// package. The view provides access to files and their contents, so the source
|
|
|
|
// package does not directly access the file system.
|
|
|
|
type View interface {
|
|
|
|
// Consider adding an error to this method, if users require it.
|
|
|
|
GetFile(uri URI) File
|
|
|
|
}
|
|
|
|
|
2018-12-05 15:00:36 -07:00
|
|
|
// File represents a Go source file that has been type-checked. It is the input
|
|
|
|
// to most of the exported functions in this package, as it wraps up the
|
|
|
|
// building blocks for most queries. Users of the source package can abstract
|
|
|
|
// the loading of packages into their own caching systems.
|
|
|
|
type File interface {
|
|
|
|
GetAST() (*ast.File, error)
|
|
|
|
GetFileSet() (*token.FileSet, error)
|
|
|
|
GetPackage() (*packages.Package, error)
|
|
|
|
GetToken() (*token.File, error)
|
2018-12-18 13:46:14 -07:00
|
|
|
Read() ([]byte, error)
|
2018-11-05 15:54:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Range represents a start and end position.
|
|
|
|
// Because Range is based purely on two token.Pos entries, it is not self
|
|
|
|
// contained. You need access to a token.FileSet to regain the file
|
|
|
|
// information.
|
|
|
|
type Range struct {
|
|
|
|
Start token.Pos
|
|
|
|
End token.Pos
|
2018-11-02 16:10:49 -06:00
|
|
|
}
|
|
|
|
|
2018-11-07 10:58:55 -07:00
|
|
|
// TextEdit represents a change to a section of a document.
|
|
|
|
// The text within the specified range should be replaced by the supplied new text.
|
|
|
|
type TextEdit struct {
|
|
|
|
Range Range
|
|
|
|
NewText string
|
|
|
|
}
|