behaviour-tree-test/engine/modules/mono/glue/GodotSharp/Godot.SourceGenerators.Internal/CallbacksInfo.cs
Sara c3f9669b10 Add 'engine/' from commit 'a8e37fc010'
git-subtree-dir: engine
git-subtree-mainline: b74841629e
git-subtree-split: a8e37fc010
2026-03-13 11:22:19 +01:00

24 lines
739 B
C#

using System.Collections.Immutable;
using System.Linq;
using Microsoft.CodeAnalysis;
namespace Godot.SourceGenerators.Internal;
internal readonly struct CallbacksData
{
public CallbacksData(INamedTypeSymbol nativeTypeSymbol, INamedTypeSymbol funcStructSymbol)
{
NativeTypeSymbol = nativeTypeSymbol;
FuncStructSymbol = funcStructSymbol;
Methods = NativeTypeSymbol.GetMembers()
.Where(symbol => symbol is IMethodSymbol { IsPartialDefinition: true })
.Cast<IMethodSymbol>()
.ToImmutableArray();
}
public INamedTypeSymbol NativeTypeSymbol { get; }
public INamedTypeSymbol FuncStructSymbol { get; }
public ImmutableArray<IMethodSymbol> Methods { get; }
}