mirror of
https://github.com/tiennm99/godot.git
synced 2026-08-05 16:24:39 +00:00
C#: Ignore explicit interface implementations
(cherry picked from commit 0372bd56b6)
This commit is contained in:
+6
@@ -151,6 +151,12 @@ namespace Godot.SourceGenerators
|
||||
continue;
|
||||
}
|
||||
|
||||
if (property.ExplicitInterfaceImplementations.Length > 0)
|
||||
{
|
||||
Common.ReportExportedMemberIsExplicitInterfaceImplementation(context, property);
|
||||
continue;
|
||||
}
|
||||
|
||||
var propertyType = property.Type;
|
||||
var marshalType = MarshalUtils.ConvertManagedTypeToMarshalType(propertyType, typeCache);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user