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

SamboyCoding / Cpp2IL / 20488056168

24 Dec 2025 02:19PM UTC coverage: 34.361% (+0.05%) from 34.31%
20488056168

Pull #499

github

web-flow
Merge 482cdd13f into 3a72c253a
Pull Request #499: Add ResolveContextForMethod overload taking Cpp2IlMethodRef as a parameter

1811 of 6624 branches covered (27.34%)

Branch coverage included in aggregate %.

0 of 3 new or added lines in 1 file covered. (0.0%)

187 existing lines in 10 files now uncovered.

4208 of 10893 relevant lines covered (38.63%)

201355.63 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,982,455✔
5
{
6
    public abstract string DefaultName { get; }
7

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

10
    public string Name
11
    {
12
        get => OverrideName ?? DefaultName;
496,327✔
UNCOV
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