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

SamboyCoding / Cpp2IL / 28788649114

06 Jul 2026 11:36AM UTC coverage: 36.132% (-0.007%) from 36.139%
28788649114

push

github

web-flow
Remove reference assembly parameter from most type analysis constructors (#575)

2678 of 8472 branches covered (31.61%)

Branch coverage included in aggregate %.

56 of 78 new or added lines in 26 files covered. (71.79%)

2 existing lines in 2 files now uncovered.

5050 of 12916 relevant lines covered (39.1%)

166891.02 hits per line

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

0.0
/Cpp2IL.Core/Model/Contexts/BoxedTypeAnalysisContext.cs
1
using Cpp2IL.Core.Utils;
2
using LibCpp2IL.BinaryStructures;
3

4
namespace Cpp2IL.Core.Model.Contexts;
5

6
public class BoxedTypeAnalysisContext(TypeAnalysisContext elementType)
NEW
7
    : WrappedTypeAnalysisContext(elementType)
×
8
{
9
    public BoxedTypeAnalysisContext(Il2CppType rawType, ApplicationAnalysisContext context)
NEW
10
        : this(context.ResolveIl2CppType(rawType.GetEncapsulatedType()))
×
11
    {
12
    }
×
13

14
    public sealed override Il2CppTypeEnum Type => Il2CppTypeEnum.IL2CPP_TYPE_BOXED;
×
15

16
    public sealed override string DefaultName => ElementType.DefaultName;
×
17

18
    public sealed override string? OverrideName
19
    {
20
        get => ElementType.OverrideName;
×
21
        set => ElementType.OverrideName = value;
×
22
    }
23

24
    public sealed override bool IsValueType => false;
×
25
}
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