Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tmat committed Feb 2, 2022
1 parent 013d534 commit 882eb24
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -375,11 +375,12 @@ End Class</a>
workspaceFixture.GetWorkspace(ExportProvider)
Dim document1 = workspaceFixture.UpdateDocument(code, SourceCodeKind.Regular)

Dim options = CompletionOptions.Default
Dim options As CompletionOptions

If useDebuggerOptions Then
options.FilterOutOfScopeLocals = False
options.ShowXmlDocCommentCompletion = False
options = New CompletionOptions(FilterOutOfScopeLocals:=False, ShowXmlDocCommentCompletion:=False)
Else
options = CompletionOptions.Default
End If

Await CheckResultsAsync(document1, position, isBuilder, triggerInfo, options)
Expand Down

0 comments on commit 882eb24

Please sign in to comment.