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

SamboyCoding / Cpp2IL / 27876691548

20 Jun 2026 04:12PM UTC coverage: 34.253% (-1.1%) from 35.351%
27876691548

push

github

web-flow
IL Generation: Fix broken branching and omit methodinfo param load (#563)

2410 of 8267 branches covered (29.15%)

Branch coverage included in aggregate %.

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

216 existing lines in 11 files now uncovered.

4788 of 12747 relevant lines covered (37.56%)

218738.72 hits per line

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

66.67
/Cpp2IL.Core/Model/Contexts/ModuleAnalysisContext.cs
1
namespace Cpp2IL.Core.Model.Contexts;
2

3
/// <summary>
4
/// Represents a single Module that was converted using IL2CPP.
5
/// </summary>
6
public class ModuleAnalysisContext : HasCustomAttributesAndName
7
{
8
    private AssemblyAnalysisContext _assemblyContext;
9
    
10
    /// <inheritdoc />
UNCOV
11
    override protected int CustomAttributeIndex => -1;
×
12
    /// <inheritdoc />
13
    public override AssemblyAnalysisContext CustomAttributeAssembly => _assemblyContext;
1,338✔
14
    /// <inheritdoc />
15
    public override string DefaultName => _assemblyContext.Definition!.Image.Name!;
×
16

17
    public ModuleAnalysisContext(AssemblyAnalysisContext asmCtx) : base(asmCtx.Definition?.ModuleToken ?? 1, asmCtx.AppContext)
1,338!
18
    {
19
        _assemblyContext = asmCtx;
1,338✔
20
        
21
        InitCustomAttributeData();
1,338✔
22
    }
1,338✔
23
}
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