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 62bd220 commit 54dc762Copy full SHA for 54dc762
Engine/Helper.cs
@@ -1448,11 +1448,11 @@ public bool GetNamedArgumentAttributeValue(NamedAttributeArgumentAst namedAttrib
1448
return constExpVal;
1449
}
1450
1451
- else if (varExpAst.VariablePath.UserPath.Equals(
1452
- bool.TrueString,
1453
- StringComparison.OrdinalIgnoreCase))
+ else
1454
{
1455
- return true;
+ return varExpAst.VariablePath.UserPath.Equals(
+ bool.TrueString,
+ StringComparison.OrdinalIgnoreCase);
1456
1457
1458
return false;
0 commit comments