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

SamboyCoding / Cpp2IL / 15104858512

19 May 2025 05:13AM UTC coverage: 34.216% (+0.2%) from 34.047%
15104858512

Pull #462

github

web-flow
Merge e48d6c526 into cc6dfc6a8
Pull Request #462: Support overriding member types

1795 of 6644 branches covered (27.02%)

Branch coverage included in aggregate %.

105 of 190 new or added lines in 33 files covered. (55.26%)

5 existing lines in 5 files now uncovered.

4185 of 10833 relevant lines covered (38.63%)

185357.37 hits per line

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

77.78
/Cpp2IL.Core/Model/Contexts/InjectedFieldAnalysisContext.cs
1
using System.Reflection;
2

3
namespace Cpp2IL.Core.Model.Contexts;
4

5
public class InjectedFieldAnalysisContext : FieldAnalysisContext
6
{
7
    public override TypeAnalysisContext DefaultFieldType { get; }
1✔
8
    public override string DefaultName { get; }
1✔
NEW
9
    public override FieldAttributes DefaultAttributes { get; }
×
10

11
    protected override bool IsInjected => true;
×
12

13
    public InjectedFieldAnalysisContext(string name, TypeAnalysisContext type, FieldAttributes attributes, TypeAnalysisContext parent) : base(null, parent)
42✔
14
    {
15
        DefaultName = name;
42✔
16
        DefaultAttributes = attributes;
42✔
17
        DefaultFieldType = type;
42✔
18
    }
42✔
19
}
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

© 2025 Coveralls, Inc