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

SamboyCoding / Cpp2IL / 27877222854

20 Jun 2026 04:32PM UTC coverage: 34.68% (+0.4%) from 34.235%
27877222854

push

github

SamboyCoding
Lib: Bump test downloader timeout to 5 minutes

2437 of 8269 branches covered (29.47%)

Branch coverage included in aggregate %.

4852 of 12749 relevant lines covered (38.06%)

187225.41 hits per line

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

0.0
/LibCpp2IL/Wasm/WasmCodeSection.cs
1
using System;
2
using System.Collections.Generic;
3
using LibCpp2IL.Logging;
4

5
namespace LibCpp2IL.Wasm;
6

7
public class WasmCodeSection : WasmSection
8
{
9
    private readonly WasmFile _file;
10
    public ulong FunctionCount;
11
    public readonly List<WasmFunctionBody> Functions = [];
×
12

13
    internal WasmCodeSection(WasmSectionId type, long pointer, ulong size, WasmFile file) : base(type, pointer, size)
×
14
    {
15
        _file = file;
×
16
        FunctionCount = file.BaseStream.ReadLEB128Unsigned();
×
17
        for (var i = 0UL; i < FunctionCount; i++)
×
18
        {
19
            Functions.Add(new(file));
×
20
        }
21

22
        LibLogger.VerboseNewline($"\t\tRead {Functions.Count} function bodies");
×
23
    }
×
24

25
    public ReadOnlySpan<byte> RawSectionContent => _file.GetRawBinaryContent().Slice((int)Pointer, (int)Size);
×
26
}
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