提交 7520e0ed 编写于 作者: M Manish Vasani

Add another IDE unit test and work item attributes

上级 e484c3d4
......@@ -896,7 +896,8 @@ End Class")
End Function
<Fact, Trait(Traits.Feature, Traits.Features.CodeActionsMakeFieldReadonly)>
Public Async Function FieldIsRedimOperand() As Task
<WorkItem(29373, "https://github.com/dotnet/roslyn/issues/29373")>
Public Async Function FieldIsReDimOperand() As Task
Await TestMissingInRegularAndScriptAsync(
"Class C
Private [|_goo()|] As Integer
......@@ -907,6 +908,19 @@ End Class")
End Function
<Fact, Trait(Traits.Feature, Traits.Features.CodeActionsMakeFieldReadonly)>
<WorkItem(29373, "https://github.com/dotnet/roslyn/issues/29373")>
Public Async Function FieldIsReDimPreserveOperand() As Task
Await TestMissingInRegularAndScriptAsync(
"Class C
Private [|_goo()|] As Integer
Private Sub M()
Redim Preserve _goo(5)
End Sub
End Class")
End Function
<Fact, Trait(Traits.Feature, Traits.Features.CodeActionsMakeFieldReadonly)>
<WorkItem(29373, "https://github.com/dotnet/roslyn/issues/29373")>
Public Async Function FieldIsRedimIndex() As Task
Await TestInRegularAndScriptAsync(
"Class C
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册