提交 8569cec9 编写于 作者: M Manish Vasani

Fix unit tests and add a workaround for https://github.com/dotnet/roslyn/issues/21554

上级 c495fe4f
...@@ -26,11 +26,12 @@ Namespace Microsoft.CodeAnalysis.Semantics ...@@ -26,11 +26,12 @@ Namespace Microsoft.CodeAnalysis.Semantics
' this should be removed once this issue is fixed ' this should be removed once this issue is fixed
' https://github.com/dotnet/roslyn/issues/21186 ' https://github.com/dotnet/roslyn/issues/21186
If TypeOf boundNode Is BoundValuePlaceholderBase Then ' https://github.com/dotnet/roslyn/issues/21554
' since same place holder bound node appears in multiple places in the tree If TypeOf boundNode Is BoundValuePlaceholderBase OrElse
(TypeOf boundNode Is BoundParameter AndAlso boundNode.WasCompilerGenerated) Then
' since same bound node appears in multiple places in the tree
' we can't use bound node to operation map. ' we can't use bound node to operation map.
' for now, we will just create new operation and return clone but we need to figure out ' for now, we will just create new operation and return cloned
' what we want to do with place holder node such as just returning nothing
Return _semanticModel.CloneOperation(CreateInternal(boundNode)) Return _semanticModel.CloneOperation(CreateInternal(boundNode))
End If End If
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册