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

SamboyCoding / Cpp2IL / 27101739479

07 Jun 2026 06:57PM UTC coverage: 33.825%. First build
27101739479

Pull #552

github

web-flow
Merge 3be2901bd into 0b13ff77c
Pull Request #552: Fix name overrides for constructed types

2181 of 7782 branches covered (28.03%)

Branch coverage included in aggregate %.

2 of 53 new or added lines in 12 files covered. (3.77%)

4627 of 12345 relevant lines covered (37.48%)

243296.41 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, AssemblyAnalysisContext referencedFrom)
7
    : WrappedTypeAnalysisContext(elementType, referencedFrom)
×
8
{
9
    public BoxedTypeAnalysisContext(Il2CppType rawType, AssemblyAnalysisContext referencedFrom)
10
        : this(referencedFrom.ResolveIl2CppType(rawType.GetEncapsulatedType()), referencedFrom)
×
11
    {
12
    }
×
13

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

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

18
    public sealed override string? OverrideName
19
    {
NEW
20
        get => ElementType.OverrideName;
×
NEW
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