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
3434import Data.Maybe
3535import Data.Text (Text )
3636import qualified Data.Text as T
37+ import Debug.Trace
3738import Development.IDE (Action ,
3839 GetDocMap (GetDocMap ),
3940 GetHieAst (GetHieAst ),
Original file line number Diff line number Diff line change 55{-# LANGUAGE OverloadedStrings #-}
66{-# LANGUAGE StrictData #-}
77{-# LANGUAGE TypeFamilies #-}
8- {-# LANGUAGE DeriveAnyClass #-}
98
109module Ide.Plugin.SemanticTokens.Types where
1110
@@ -181,6 +180,7 @@ data SemanticLog
181180 | LogConfig SemanticTokensConfig
182181 | LogMsg String
183182 | LogNoVF
183+ | LogSyntacticTokens RangeHsSyntacticTokenTypes
184184 | LogSemanticTokensDeltaMisMatch Text (Maybe Text )
185185
186186instance Pretty SemanticLog where
@@ -194,5 +194,4 @@ instance Pretty SemanticLog where
194194 -> " SemanticTokensDeltaMisMatch: previousIdFromRequest: " <> pretty previousIdFromRequest
195195 <> " previousIdFromCache: " <> pretty previousIdFromCache
196196 LogDependencyError err -> " SemanticTokens' dependency error: " <> pretty err
197-
198197type SemanticTokenId = Text
You can’t perform that action at this time.
0 commit comments