You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// This is a conversion heavily based on Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SyntaxExtensions.ExtractAnonymousTypeMemberName from 1bbbfc28a8e4493b4057e171310343a4c7ba826c
31
36
/// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0
Copy file name to clipboardExpand all lines: CodeConverter/VB/NodesVisitor.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -634,7 +634,7 @@ public override VisualBasicSyntaxNode VisitEventDeclaration(CSS.EventDeclaration
634
634
varinvocationExpression=
635
635
SyntaxFactory.InvocationExpression(
636
636
SyntaxFactory.ParseExpression(eventFieldIdentifier.Identifier.ValueText+"?"),//I think this syntax tree is the wrong shape, but using the right shape causes the simplifier to fail
Copy file name to clipboardExpand all lines: Tests/CSharp/MissingSemanticModelInfo/StatementTests.cs
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -38,5 +38,20 @@ public void Test()
38
38
1 target compilation errors:
39
39
CS0246: The type or namespace name 'Asadf' could not be found (are you missing a using directive or an assembly reference?)",missingSemanticInfo:true);
0 commit comments