summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-05-01 09:55:21 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-05-01 09:55:21 +0200
commit0e0ef3cd6986002a4213ea9fd1998da1105d1dc8 (patch)
tree17f4cdeea2c64a117b6e6368ff56a1d80a617c66
parent7733ecd1eea71573bd8bea2408cb993f0766fc27 (diff)
parent1510f88ae1f78165b6637f378582fe701b6b6fe3 (diff)
downloadredot-engine-0e0ef3cd6986002a4213ea9fd1998da1105d1dc8.tar.gz
Merge pull request #91368 from raulsntos/dotnet/must-be-variant-dynamic
C#: Ignore late bound methods in MustBeVariantAnalyzer
-rw-r--r--modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/TestData/Sources/MustBeVariant.GD0301.cs6
-rw-r--r--modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators/MustBeVariantAnalyzer.cs14
2 files changed, 18 insertions, 2 deletions
diff --git a/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/TestData/Sources/MustBeVariant.GD0301.cs b/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/TestData/Sources/MustBeVariant.GD0301.cs
index 462da31d66..2b5eecab8a 100644
--- a/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/TestData/Sources/MustBeVariant.GD0301.cs
+++ b/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/TestData/Sources/MustBeVariant.GD0301.cs
@@ -66,6 +66,12 @@ public class MustBeVariantGD0301
Method<Rid[]>();
}
+ public void MethodCallDynamic()
+ {
+ dynamic self = this;
+ self.Method<object>();
+ }
+
public void Method<[MustBeVariant] T>()
{
}
diff --git a/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators/MustBeVariantAnalyzer.cs b/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators/MustBeVariantAnalyzer.cs
index 95eaca4d3d..e894e7a86c 100644
--- a/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators/MustBeVariantAnalyzer.cs
+++ b/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators/MustBeVariantAnalyzer.cs
@@ -50,8 +50,18 @@ namespace Godot.SourceGenerators
var typeSymbol = sm.GetSymbolInfo(typeSyntax).Symbol as ITypeSymbol;
Helper.ThrowIfNull(typeSymbol);
- var parentSymbol = sm.GetSymbolInfo(parentSyntax).Symbol;
- Helper.ThrowIfNull(parentSymbol);
+ var parentSymbolInfo = sm.GetSymbolInfo(parentSyntax);
+ var parentSymbol = parentSymbolInfo.Symbol;
+ if (parentSymbol == null)
+ {
+ if (parentSymbolInfo.CandidateReason == CandidateReason.LateBound)
+ {
+ // Invocations on dynamic are late bound so we can't retrieve the symbol.
+ continue;
+ }
+
+ Helper.ThrowIfNull(parentSymbol);
+ }
if (!ShouldCheckTypeArgument(context, parentSyntax, parentSymbol, typeSyntax, typeSymbol, i))
{