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

SamboyCoding / Cpp2IL / 15144219583

20 May 2025 05:38PM UTC coverage: 34.28% (+0.2%) from 34.047%
15144219583

Pull #462

github

web-flow
Merge f80b990bc into 5807d2b6c
Pull Request #462: Support overriding member types

1799 of 6646 branches covered (27.07%)

Branch coverage included in aggregate %.

115 of 202 new or added lines in 33 files covered. (56.93%)

22 existing lines in 6 files now uncovered.

4197 of 10845 relevant lines covered (38.7%)

186399.11 hits per line

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

0.0
/Cpp2IL.Core/Model/Contexts/NativeMethodAnalysisContext.cs
1
using System;
2
using System.Reflection;
3
using LibCpp2IL;
4

5
namespace Cpp2IL.Core.Model.Contexts;
6

7
public sealed class NativeMethodAnalysisContext : MethodAnalysisContext
8
{
9
    public override ulong UnderlyingPointer { get; }
×
10

11
    public override string DefaultName { get; }
×
12

13
    protected override bool IsInjected => true;
×
14

NEW
15
    public override TypeAnalysisContext DefaultReturnType => isVoid ? AppContext.SystemTypes.SystemVoidType : AppContext.SystemTypes.SystemObjectType;
×
16

NEW
17
    public override MethodAttributes DefaultAttributes => MethodAttributes.Public | MethodAttributes.Static | MethodAttributes.HideBySig;
×
18

19
    protected override int CustomAttributeIndex => -1;
×
20

21
    private readonly bool isVoid;
22

UNCOV
23
    public NativeMethodAnalysisContext(TypeAnalysisContext parent, ulong address, bool voidReturn) : base(null, parent)
×
24
    {
25
        if (address == 0)
×
26
            throw new ArgumentOutOfRangeException(nameof(address));
×
27

NEW
28
        isVoid = voidReturn;
×
29
        UnderlyingPointer = address;
×
30
        if (LibCpp2IlMain.Binary?.TryGetExportedFunctionName(UnderlyingPointer, out var name) ?? false)
×
31
        {
32
            DefaultName = name;
×
33
        }
34
        else
35
        {
36
            DefaultName = $"NativeMethod_0x{UnderlyingPointer:X}";
×
37
        }
38

39
        rawMethodBody = AppContext.InstructionSet.GetRawBytesForMethod(this, false);
×
40
    }
×
41
}
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