An open API service indexing awesome lists of open source software.

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

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`
}
```