Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/EditorFeatures/Core/EditorFeaturesResources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -917,4 +917,4 @@ Do you want to proceed?</value>
<data name="Toggling_line_comment" xml:space="preserve">
<value>Toggling line comment...</value>
</data>
</root>
</root>
Original file line number Diff line number Diff line change
Expand Up @@ -5475,12 +5475,8 @@ class C
Public AutomationTextString As String = "Hello from IntelliCode: Length"

Public Overrides Function ProvideCompletionsAsync(context As CompletionContext) As Task
Dim intelliCodeItem = CompletionItem.Create(displayText:="★ Length", filterText:="Length")
intelliCodeItem.AutomationText = AutomationTextString
context.AddItem(intelliCodeItem)

context.AddItem(CompletionItem.Create(displayText:="★ Length", filterText:="Length"))
context.AddItem(CompletionItem.Create(displayText:="★ Normalize", filterText:="Normalize"))
context.AddItem(CompletionItem.Create(displayText:="Normalize", filterText:="Normalize"))
context.AddItem(CompletionItem.Create(displayText:="Length", filterText:="Length"))
context.AddItem(CompletionItem.Create(displayText:="ToString()", filterText:="ToString"))
context.AddItem(CompletionItem.Create(displayText:="First()", filterText:="First"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public override async Task InitializeAsync()
VisualStudio.SolutionExplorer.AddProject(testProj, WellKnownProjectTemplates.ConsoleApplication, LanguageNames.VisualBasic);
}

[WpfFact]
[WpfFact(Skip = "https://github.com/dotnet/roslyn/issues/36763")]
public void UpdateActiveStatementLeafNode()
{
VisualStudio.Editor.SetText(@"
Expand Down Expand Up @@ -64,7 +64,7 @@ End Module
VisualStudio.Debugger.CheckExpression("names(1)", "String", "\"bar\"");
}

[WpfFact]
[WpfFact(Skip = "https://github.com/dotnet/roslyn/issues/36763")]
public void AddTryCatchAroundActiveStatement()
{
VisualStudio.Editor.SetText(@"
Expand Down Expand Up @@ -92,7 +92,7 @@ Catch ex As Exception
VisualStudio.Editor.Verify.CurrentLineText("End Try");
}

[WpfFact]
[WpfFact(Skip = "https://github.com/dotnet/roslyn/issues/36763")]
public void EditLambdaExpression()
{
VisualStudio.Editor.SetText(@"
Expand Down Expand Up @@ -123,7 +123,7 @@ End Sub
VisualStudio.ErrorList.Verify.NoBuildErrors();
}

[WpfFact]
[WpfFact(Skip = "https://github.com/dotnet/roslyn/issues/36763")]
public void EnCWhileDebuggingFromImmediateWindow()
{
VisualStudio.Editor.SetText(@"
Expand All @@ -146,7 +146,6 @@ End Sub
VisualStudio.Debugger.ExecuteStatement("Module1.Main()");
}

[WpfFact]
private void SetupMultiProjectSolution()
{
var basicLibrary = new ProjectUtils.Project("BasicLibrary1");
Expand Down Expand Up @@ -188,7 +187,7 @@ End Module
VisualStudio.Workspace.WaitForAsyncOperations(Helper.HangMitigatingTimeout, FeatureAttribute.Workspace);
}

[WpfFact]
[WpfFact(Skip = "https://github.com/dotnet/roslyn/issues/36763")]
public void MultiProjectDebuggingWhereNotAllModulesAreLoaded()
{
SetupMultiProjectSolution();
Expand All @@ -199,7 +198,7 @@ public void MultiProjectDebuggingWhereNotAllModulesAreLoaded()
VisualStudio.ErrorList.Verify.NoErrors();
}

[WpfFact]
[WpfFact(Skip = "https://github.com/dotnet/roslyn/issues/36763")]
[WorkItem(33829, "https://github.com/dotnet/roslyn/issues/33829")]
public void DocumentStateTrackingReadonlyInRunMode()
{
Expand Down Expand Up @@ -250,7 +249,7 @@ End Module
VisualStudio.Editor.Verify.IsProjectItemDirty(expectedValue: false);
}

[WpfFact]
[WpfFact(Skip = "https://github.com/dotnet/roslyn/issues/36763")]
public void LocalsWindowUpdatesAfterLocalGetsItsTypeUpdatedDuringEnC()
{
VisualStudio.Editor.SetText(@"
Expand All @@ -273,7 +272,7 @@ End Module
VisualStudio.LocalsWindow.Verify.CheckEntry("goo", "Single", "10");
}

[WpfFact]
[WpfFact(Skip = "https://github.com/dotnet/roslyn/issues/36763")]
public void LocalsWindowUpdatesCorrectlyDuringEnC()
{
VisualStudio.Editor.SetText(@"
Expand Down Expand Up @@ -306,7 +305,7 @@ End Module
VisualStudio.LocalsWindow.Verify.CheckEntry("lLng", "Long", "444");
}

[WpfFact]
[WpfFact(Skip = "https://github.com/dotnet/roslyn/issues/36763")]
public void WatchWindowUpdatesCorrectlyDuringEnC()
{
VisualStudio.Editor.SetText(@"
Expand Down