Skip to content

Commit e0c1c83

Browse files
committed
[ upstream ] Remove type constructor tags
1 parent 2736cd1 commit e0c1c83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Language/LSP/SignatureHelp.idr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ renderDataTypeInfo n d@(DCon tag arity newtypeArg) = do
6161
fullName <- getFullName rn
6262
case !(lookupDefName fullName context) of
6363
-- Render the TCon for this DCon
64-
[(defName, _, tcon@(TCon _ _ _ _ _ _ _ _))] => renderDataTypeInfo defName tcon
64+
[(defName, _, tcon@(TCon _ _ _ _ _ _ _))] => renderDataTypeInfo defName tcon
6565
_ => pure Nothing
6666
_ => pure Nothing
67-
renderDataTypeInfo n d@(TCon tag arity parampos detpos flags mutwith datacons detagabbleBy) = do
67+
renderDataTypeInfo n d@(TCon arity parampos detpos flags mutwith datacons detagabbleBy) = do
6868
-- Render the data structure information for the type.
6969
context <- gets Ctxt gamma
7070
constructors <- for (fromMaybe [] datacons) $ \dn => case !(lookupDefName dn context) of

0 commit comments

Comments
 (0)