Skip to content

Commit b000b6b

Browse files
authored
fix: semantic token omitting record field in {-# LANGUAGE DuplicateRecordFields #-} #3950 (#3951)
1 parent 10b5f3b commit b000b6b

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Query.hs

+2-4
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,8 @@ hieAstSpanNames vf ast =
8383
inclusion a b = not $ exclusion a b
8484
exclusion :: Identifier -> IdentifierDetails a -> Bool
8585
exclusion idt IdentifierDetails {identInfo = infos} = case idt of
86-
Left _ -> True
87-
Right name ->
88-
isDerivedOccName (nameOccName name)
89-
|| any isEvidenceContext (S.toList infos)
86+
Left _ -> True
87+
Right _ -> any isEvidenceContext (S.toList infos)
9088

9189
-------------------------------------------------
9290

plugins/hls-semantic-tokens-plugin/test/Main.hs

+1
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@ semanticTokensDataTypeTests =
187187
"get semantic Tokens"
188188
[ goldenWithSemanticTokens "simple datatype" "TDataType",
189189
goldenWithSemanticTokens "record" "TRecord",
190+
goldenWithSemanticTokens "record" "TRecordDuplicateRecordFields",
190191
goldenWithSemanticTokens "datatype import" "TDatatypeImported",
191192
goldenWithSemanticTokens "datatype family" "TDataFamily",
192193
goldenWithSemanticTokens "GADT" "TGADT"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
5:6-9 TTypeCon "Foo"
2+
5:12-15 TDataCon "Foo"
3+
5:18-21 TRecField "boo"
4+
5:26-32 TTypeSyn "String"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{-# LANGUAGE DuplicateRecordFields #-}
2+
3+
module TRecordDuplicateRecordFields where
4+
5+
data Foo = Foo { boo :: !String }

0 commit comments

Comments
 (0)