File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
src/EditorFeatures/VisualBasicTest Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 22' The .NET Foundation licenses this file to you under the MIT license.
33' See the LICENSE file in the project root for more information.
44
5+ Imports Microsoft.CodeAnalysis.Editor.[Shared].Utilities
56Imports Microsoft.CodeAnalysis.Editor.UnitTests.AutomaticCompletion
67Imports Microsoft.CodeAnalysis.Editor.UnitTests.Extensions
78Imports Microsoft.CodeAnalysis.Editor.UnitTests.Utilities
@@ -271,6 +272,7 @@ End Module
271272
272273 Protected Overrides Function CreateNextHandler(workspace As EditorTestWorkspace) As Action
273274 Dim endConstructor = New EndConstructCommandHandler(
275+ workspace.GetService( Of IThreadingContext),
274276 workspace.GetService( Of IEditorOperationsFactoryService),
275277 workspace.GetService( Of ITextUndoHistoryRegistry),
276278 workspace.GetService( Of EditorOptionsService))
Original file line number Diff line number Diff line change 44
55Imports System.Threading
66Imports Microsoft.CodeAnalysis
7+ Imports Microsoft.CodeAnalysis.Editor.[Shared].Utilities
78Imports Microsoft.CodeAnalysis.Editor.UnitTests
89Imports Microsoft.CodeAnalysis.Editor.UnitTests.Utilities
910Imports Microsoft.CodeAnalysis.Editor.UnitTests.Workspaces
@@ -223,6 +224,7 @@ Namespace Microsoft.CodeAnalysis.Editor.VisualBasic.UnitTests.EndConstructGenera
223224
224225 Dim factory = workspace.GetService( Of IEditorOperationsFactoryService)()
225226 Dim endConstructor = New EndConstructCommandHandler(
227+ workspace.GetService( Of IThreadingContext),
226228 factory,
227229 workspace.GetService( Of ITextUndoHistoryRegistry),
228230 workspace.GetService( Of EditorOptionsService))
You can’t perform that action at this time.
0 commit comments