Merge pull request #74375 from raulsntos/dotnet/ignore-explicit-interface-implementations
C#: Ignore explicit interface implementations
This commit is contained in:
commit
5dccc940e7
|
@ -194,6 +194,32 @@ namespace Godot.SourceGenerators
|
||||||
location?.SourceTree?.FilePath));
|
location?.SourceTree?.FilePath));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void ReportExportedMemberIsExplicitInterfaceImplementation(
|
||||||
|
GeneratorExecutionContext context,
|
||||||
|
ISymbol exportedMemberSymbol
|
||||||
|
)
|
||||||
|
{
|
||||||
|
var locations = exportedMemberSymbol.Locations;
|
||||||
|
var location = locations.FirstOrDefault(l => l.SourceTree != null) ?? locations.FirstOrDefault();
|
||||||
|
|
||||||
|
string message = $"Attempted to export explicit interface property implementation: " +
|
||||||
|
$"'{exportedMemberSymbol.ToDisplayString()}'";
|
||||||
|
|
||||||
|
string description = $"{message}. Explicit interface implementations can't be exported." +
|
||||||
|
" Remove the '[Export]' attribute.";
|
||||||
|
|
||||||
|
context.ReportDiagnostic(Diagnostic.Create(
|
||||||
|
new DiagnosticDescriptor(id: "GD0106",
|
||||||
|
title: message,
|
||||||
|
messageFormat: message,
|
||||||
|
category: "Usage",
|
||||||
|
DiagnosticSeverity.Error,
|
||||||
|
isEnabledByDefault: true,
|
||||||
|
description),
|
||||||
|
location,
|
||||||
|
location?.SourceTree?.FilePath));
|
||||||
|
}
|
||||||
|
|
||||||
public static void ReportSignalDelegateMissingSuffix(
|
public static void ReportSignalDelegateMissingSuffix(
|
||||||
GeneratorExecutionContext context,
|
GeneratorExecutionContext context,
|
||||||
INamedTypeSymbol delegateSymbol)
|
INamedTypeSymbol delegateSymbol)
|
||||||
|
|
|
@ -113,7 +113,7 @@ namespace Godot.SourceGenerators
|
||||||
var propertySymbols = members
|
var propertySymbols = members
|
||||||
.Where(s => !s.IsStatic && s.Kind == SymbolKind.Property)
|
.Where(s => !s.IsStatic && s.Kind == SymbolKind.Property)
|
||||||
.Cast<IPropertySymbol>()
|
.Cast<IPropertySymbol>()
|
||||||
.Where(s => !s.IsIndexer);
|
.Where(s => !s.IsIndexer && s.ExplicitInterfaceImplementations.Length == 0);
|
||||||
|
|
||||||
var fieldSymbols = members
|
var fieldSymbols = members
|
||||||
.Where(s => !s.IsStatic && s.Kind == SymbolKind.Field && !s.IsImplicitlyDeclared)
|
.Where(s => !s.IsStatic && s.Kind == SymbolKind.Field && !s.IsImplicitlyDeclared)
|
||||||
|
|
|
@ -151,6 +151,12 @@ namespace Godot.SourceGenerators
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (property.ExplicitInterfaceImplementations.Length > 0)
|
||||||
|
{
|
||||||
|
Common.ReportExportedMemberIsExplicitInterfaceImplementation(context, property);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
var propertyType = property.Type;
|
var propertyType = property.Type;
|
||||||
var marshalType = MarshalUtils.ConvertManagedTypeToMarshalType(propertyType, typeCache);
|
var marshalType = MarshalUtils.ConvertManagedTypeToMarshalType(propertyType, typeCache);
|
||||||
|
|
||||||
|
|
|
@ -113,7 +113,7 @@ namespace Godot.SourceGenerators
|
||||||
var propertySymbols = members
|
var propertySymbols = members
|
||||||
.Where(s => !s.IsStatic && s.Kind == SymbolKind.Property)
|
.Where(s => !s.IsStatic && s.Kind == SymbolKind.Property)
|
||||||
.Cast<IPropertySymbol>()
|
.Cast<IPropertySymbol>()
|
||||||
.Where(s => !s.IsIndexer);
|
.Where(s => !s.IsIndexer && s.ExplicitInterfaceImplementations.Length == 0);
|
||||||
|
|
||||||
var fieldSymbols = members
|
var fieldSymbols = members
|
||||||
.Where(s => !s.IsStatic && s.Kind == SymbolKind.Field && !s.IsImplicitlyDeclared)
|
.Where(s => !s.IsStatic && s.Kind == SymbolKind.Field && !s.IsImplicitlyDeclared)
|
||||||
|
|
Loading…
Reference in New Issue