File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ import qualified Data.Map.Strict as M
34
34
import Data.Maybe
35
35
import Data.Text (Text )
36
36
import qualified Data.Text as T
37
+ import Debug.Trace
37
38
import Development.IDE (Action ,
38
39
GetDocMap (GetDocMap ),
39
40
GetHieAst (GetHieAst ),
Original file line number Diff line number Diff line change 5
5
{-# LANGUAGE OverloadedStrings #-}
6
6
{-# LANGUAGE StrictData #-}
7
7
{-# LANGUAGE TypeFamilies #-}
8
- {-# LANGUAGE DeriveAnyClass #-}
9
8
10
9
module Ide.Plugin.SemanticTokens.Types where
11
10
@@ -181,6 +180,7 @@ data SemanticLog
181
180
| LogConfig SemanticTokensConfig
182
181
| LogMsg String
183
182
| LogNoVF
183
+ | LogSyntacticTokens RangeHsSyntacticTokenTypes
184
184
| LogSemanticTokensDeltaMisMatch Text (Maybe Text )
185
185
186
186
instance Pretty SemanticLog where
@@ -194,5 +194,4 @@ instance Pretty SemanticLog where
194
194
-> " SemanticTokensDeltaMisMatch: previousIdFromRequest: " <> pretty previousIdFromRequest
195
195
<> " previousIdFromCache: " <> pretty previousIdFromCache
196
196
LogDependencyError err -> " SemanticTokens' dependency error: " <> pretty err
197
-
198
197
type SemanticTokenId = Text
You can’t perform that action at this time.
0 commit comments