• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

SamboyCoding / Cpp2IL / 18668618045

21 Oct 2025 12:15AM UTC coverage: 34.275% (-0.04%) from 34.31%
18668618045

Pull #491

github

web-flow
Merge 7e5f17aa9 into e66a74bb3
Pull Request #491: Add set accessor for Attributes properties

1791 of 6588 branches covered (27.19%)

Branch coverage included in aggregate %.

18 of 39 new or added lines in 8 files covered. (46.15%)

4191 of 10865 relevant lines covered (38.57%)

180313.71 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

83.33
/Cpp2IL.Core/Model/Contexts/HasCustomAttributesAndName.cs
1
namespace Cpp2IL.Core.Model.Contexts;
2

3
public abstract class HasCustomAttributesAndName(uint token, ApplicationAnalysisContext appContext)
4
    : HasCustomAttributes(token, appContext)
2,553,721✔
5
{
6
    public abstract string DefaultName { get; }
7

8
    public virtual string? OverrideName { get; set; }
496,319✔
9

10
    public string Name
11
    {
12
        get => OverrideName ?? DefaultName;
496,319✔
NEW
13
        set => OverrideName = value;
×
14
    }
15
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc