Skip to content

Commit 7e211d6

Browse files
Merge pull request #567 from ronaldvanmanen/fix/with-attributes-wildcard-support
Fix wildcard support for --with-attributes option.
2 parents cde319b + 7a147c5 commit 7e211d6

File tree

2 files changed

+38
-1
lines changed

2 files changed

+38
-1
lines changed

sources/ClangSharp.PInvokeGenerator/PInvokeGenerator.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6765,7 +6765,7 @@ private void WithAttributes(NamedDecl namedDecl, bool onlySupportedOSPlatform =
67656765
var outputBuilder = isTestOutput ? _testOutputBuilder : _outputBuilder;
67666766
Debug.Assert(outputBuilder is not null);
67676767

6768-
if (TryGetRemappedValue(namedDecl, _config.WithAttributes, out var attributes))
6768+
if (TryGetRemappedValue(namedDecl, _config.WithAttributes, out var attributes, matchStar: true))
67696769
{
67706770
foreach (var attribute in attributes.Where((a) => !onlySupportedOSPlatform || a.StartsWith("SupportedOSPlatform(", StringComparison.Ordinal)))
67716771
{

tests/ClangSharp.PInvokeGenerator.UnitTests/OptionsTest.cs

+37
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,41 @@ public partial struct StructD
5454

5555
return ValidateGeneratedCSharpLatestWindowsBindingsAsync(inputContents, expectedOutputContents, withUsings: withUsings);
5656
}
57+
58+
[Test]
59+
public Task WithAttributes()
60+
{
61+
var inputContents = @"struct StructA {}; struct StructB {}; struct StructC {}; struct StructD {};";
62+
var expectedOutputContents =
63+
@"namespace ClangSharp.Test
64+
{
65+
[A]
66+
public partial struct StructA
67+
{
68+
}
69+
70+
[B]
71+
public partial struct StructB
72+
{
73+
}
74+
75+
[Star]
76+
public partial struct StructC
77+
{
78+
}
79+
80+
[Star]
81+
public partial struct StructD
82+
{
83+
}
84+
}
85+
";
86+
var withAttributes = new Dictionary<string, IReadOnlyList<string>> {
87+
["StructA"] = [@"A"],
88+
["StructB"] = [@"B"],
89+
["*"] = [@"Star"],
90+
};
91+
92+
return ValidateGeneratedCSharpLatestWindowsBindingsAsync(inputContents, expectedOutputContents, withAttributes: withAttributes);
93+
}
5794
}

0 commit comments

Comments
 (0)