File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
plugins/hls-cabal-plugin/src/Ide/Plugin/Cabal Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -49,18 +49,18 @@ documentSymbolForField :: Field Position -> Maybe DocumentSymbol
49
49
documentSymbolForField (Field (Name pos fieldName) _) =
50
50
Just
51
51
(defDocumentSymbol range)
52
- { LSP. _name = decodeUtf8 fieldName,
53
- LSP. _kind = LSP. SymbolKind_Field ,
54
- LSP. _children = Nothing
52
+ { _name = decodeUtf8 fieldName,
53
+ _kind = LSP. SymbolKind_Field ,
54
+ _children = Nothing
55
55
}
56
56
where
57
57
range = cabalPositionToLSPRange pos `addNameLengthToLSPRange` decodeUtf8 fieldName
58
58
documentSymbolForField (Section (Name pos fieldName) sectionArgs fields) =
59
59
Just
60
60
(defDocumentSymbol range)
61
- { LSP. _name = joinedName,
62
- LSP. _kind = LSP. SymbolKind_Object ,
63
- LSP. _children =
61
+ { _name = joinedName,
62
+ _kind = LSP. SymbolKind_Object ,
63
+ _children =
64
64
Just
65
65
(mapMaybe documentSymbolForField fields)
66
66
}
You can’t perform that action at this time.
0 commit comments