https://github.com/alexhaxe/haxe-simple_lcov
a simple LCOV parser written in Haxe
https://github.com/alexhaxe/haxe-simple_lcov
Last synced: 4 months ago
JSON representation
a simple LCOV parser written in Haxe
- Host: GitHub
- URL: https://github.com/alexhaxe/haxe-simple_lcov
- Owner: AlexHaxe
- License: mit
- Created: 2025-01-07T17:36:53.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-07T18:10:39.000Z (over 1 year ago)
- Last Synced: 2026-01-13T03:41:57.916Z (5 months ago)
- Language: Haxe
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# simple_lcov library
simple_lcov is a fork from with some modifcations:
- no dependencies required when using simple_lcov
## usage
```haxe
switch (Report.parse(File.getContent("lcov.info"))) {
case Failure(error):
trace(error.message);
case Success(report):
trace('The coverage report contains ${report.sourceFiles.length} source files:');
// TODO: use `report`
}
```