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

SamboyCoding / Cpp2IL / 13015566663

28 Jan 2025 04:59PM UTC coverage: 27.503% (+0.007%) from 27.496%
13015566663

push

github

SamboyCoding
Core: Fix issues with CA gen analysis on v27, crash if no game path or force options specified.

1254 of 6380 branches covered (19.66%)

Branch coverage included in aggregate %.

6 of 18 new or added lines in 6 files covered. (33.33%)

3366 of 10418 relevant lines covered (32.31%)

124924.5 hits per line

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

75.0
/Cpp2IL.Core/Model/Contexts/InjectedFieldAnalysisContext.cs
1
using System.Reflection;
2
using LibCpp2IL.BinaryStructures;
3
using LibCpp2IL.Reflection;
4

5
namespace Cpp2IL.Core.Model.Contexts;
6

7
public class InjectedFieldAnalysisContext : FieldAnalysisContext
8
{
9
    public override TypeAnalysisContext FieldTypeContext { get; }
1✔
10
    public override FieldAttributes Attributes { get; }
×
11

NEW
12
    protected override bool IsInjected => true;
×
13

14
    public InjectedFieldAnalysisContext(string name, TypeAnalysisContext type, FieldAttributes attributes, TypeAnalysisContext parent) : base(null, parent)
42✔
15
    {
16
        OverrideName = name;
42✔
17
        Attributes = attributes;
42✔
18
        FieldTypeContext = type;
42✔
19
    }
42✔
20
}
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