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

SamboyCoding / Cpp2IL / 12320749043

13 Dec 2024 06:07PM UTC coverage: 27.79% (-0.3%) from 28.128%
12320749043

Pull #393

github

web-flow
Merge b9caa35d0 into ac99859af
Pull Request #393: Add Type field to AttributeAttribute

1268 of 6370 branches covered (19.91%)

Branch coverage included in aggregate %.

3 of 93 new or added lines in 7 files covered. (3.23%)

45 existing lines in 4 files now uncovered.

3386 of 10377 relevant lines covered (32.63%)

123656.67 hits per line

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

16.67
/Cpp2IL.Core/Model/Contexts/ReferencedTypeAnalysisContext.cs
1
using System;
2
using LibCpp2IL.BinaryStructures;
3

4
namespace Cpp2IL.Core.Model.Contexts;
5

6
/// <summary>
7
/// Represents any kind of type context that is not a basic type definition. This includes generic instantiations, byref/pointer types, arrays, etc.
8
/// </summary>
9
public abstract class ReferencedTypeAnalysisContext(AssemblyAnalysisContext referencedFrom)
10
    : TypeAnalysisContext(null, referencedFrom)
479,072✔
11
{
NEW
12
    public override Il2CppTypeEnum Type => throw new NotImplementedException("Type must be set by derived classes");
×
13

14
    protected override int CustomAttributeIndex => -1;
×
15

16
    public override AssemblyAnalysisContext CustomAttributeAssembly => DeclaringAssembly;
×
17

18
    public override string ToString()
19
    {
20
        return DefaultName;
×
21
    }
22

23
    public override string GetCSharpSourceString()
24
    {
25
        return Name;
×
26
    }
27
}
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