We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebc51a9 commit 4b0753aCopy full SHA for 4b0753a
test/ProgressOnderwijsUtils.Tests/HtmlDslGenerator.cs
@@ -258,10 +258,10 @@ public static class AttributeConstructionMethods
258
return;
259
260
string GenerateAttributeLookupTable(
261
- (string elementName, DistinctArray<string> attributes)[] elements)
+ (string elementName, DistinctArray<string> attributes)[] elementsWithAttributes)
262
{
263
// Generate lookup entries for each element
264
- var elementLookups = elements.Select(el => {
+ var elementLookups = elementsWithAttributes.Select(el => {
265
var elementAttributes = globalAttributes.Concat(el.attributes).ToDistinctArray();
266
var attributeEntries = elementAttributes.Select(attrName => {
267
var methodName = $"_{toClassName(attrName)}";
0 commit comments