aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp/cache/parse.go
diff options
context:
space:
mode:
authorIan Cottrell <iancottrell@google.com>2020-04-17 09:32:56 -0400
committerIan Cottrell <iancottrell@google.com>2020-04-23 17:20:48 +0000
commitcf0cb92717bed0570dd0d024d51a0e39e1b2dd64 (patch)
treefe422be7e399356fcc9603272037941c38a2742f /internal/lsp/cache/parse.go
parent72e4a01eba4315301fd9ce00c8c2f492580ded8a (diff)
downloadgolang-x-tools-cf0cb92717bed0570dd0d024d51a0e39e1b2dd64.tar.gz
internal/telemetry: renaming to internal/event
internal/telemetry/event was renamed to internal/event/core Some things were partly moved from internal/telemetry/event straight to internal/event to minimize churn in the following restructuring. Change-Id: I8511241c68d2d05f64c52dbe04748086dd325158 Reviewed-on: https://go-review.googlesource.com/c/tools/+/229237 Run-TryBot: Ian Cottrell <iancottrell@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Robert Findley <rfindley@google.com>
Diffstat (limited to 'internal/lsp/cache/parse.go')
-rw-r--r--internal/lsp/cache/parse.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/lsp/cache/parse.go b/internal/lsp/cache/parse.go
index ca7893565..4f01fcbc9 100644
--- a/internal/lsp/cache/parse.go
+++ b/internal/lsp/cache/parse.go
@@ -13,12 +13,12 @@ import (
"go/token"
"reflect"
+ "golang.org/x/tools/internal/event"
"golang.org/x/tools/internal/lsp/debug/tag"
"golang.org/x/tools/internal/lsp/protocol"
"golang.org/x/tools/internal/lsp/source"
"golang.org/x/tools/internal/memoize"
"golang.org/x/tools/internal/span"
- "golang.org/x/tools/internal/telemetry/event"
errors "golang.org/x/xerrors"
)