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

SamboyCoding / Cpp2IL / 26005967564

17 May 2026 11:34PM UTC coverage: 35.273% (-0.06%) from 35.33%
26005967564

Pull #552

github

web-flow
Merge d03ec7dd9 into 6af99f218
Pull Request #552: Fix name overrides for constructed types

1974 of 6975 branches covered (28.3%)

Branch coverage included in aggregate %.

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

1 existing line in 1 file now uncovered.

4495 of 11365 relevant lines covered (39.55%)

252024.2 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