Skip to content

Commit

Permalink
Removed the TODOs, will be done later
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaelMayer committed Oct 28, 2024
1 parent 76d3e2e commit ccb30b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/DafnyLanguageServer/Handlers/DafnyCompletionHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ private CompletionItem CreateCompletionItem(string attributeName) {
return new CompletionItem {
Label = attributeName,
Kind = CompletionItemKind.Constructor,
InsertText = attributeName, // TODO: Parentheses
Detail = "" // TODO: Details of attribute name
InsertText = attributeName,
Detail = ""
};
}

Expand Down

0 comments on commit ccb30b2

Please sign in to comment.