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

SamboyCoding / Cpp2IL / 15102287345

19 May 2025 01:28AM UTC coverage: 34.184% (+0.1%) from 34.047%
15102287345

Pull #462

github

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

1795 of 6648 branches covered (27.0%)

Branch coverage included in aggregate %.

68 of 116 new or added lines in 24 files covered. (58.62%)

2 existing lines in 2 files now uncovered.

4176 of 10819 relevant lines covered (38.6%)

185569.57 hits per line

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

81.82
/Cpp2IL.Core/Model/Contexts/InjectedParameterAnalysisContext.cs
1
using System.Reflection;
2

3
namespace Cpp2IL.Core.Model.Contexts;
4

5
public class InjectedParameterAnalysisContext : ParameterAnalysisContext
6
{
7
    public override string DefaultName { get; }
2✔
8

9
    public override TypeAnalysisContext DefaultParameterType { get; }
2✔
10

NEW
11
    public override ParameterAttributes DefaultAttributes { get; }
×
12
    
13
    protected override bool IsInjected => true;
×
14

15
    public InjectedParameterAnalysisContext(string? name, TypeAnalysisContext typeContext, ParameterAttributes attributes, int parameterIndex, MethodAnalysisContext declaringMethod) : base(null, parameterIndex, declaringMethod)
84✔
16
    {
17
        DefaultName = name ?? $"param_{parameterIndex}";
84✔
18
        DefaultParameterType = typeContext;
84✔
19
        DefaultAttributes = attributes;
84✔
20
    }
84✔
21
}
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