]> gerrit.simantics Code Review - simantics/platform.git/blob - FunctionCoverage.java
87c56f690c2e3b34add543b882e0e72e26556d69
[simantics/platform.git] / FunctionCoverage.java
1 package org.simantics.scl.compiler.module.coverage;\r
2 \r
3 public class FunctionCoverage extends AbstractCoverage {\r
4     public final String functionName;\r
5     public final int totalCodeSize;\r
6     public final int coveredCodeSize;\r
7 \r
8     FunctionCoverage(String functionName, int totalCodeSize, int coveredCodeSize) {\r
9         super(functionName, totalCodeSize, coveredCodeSize);\r
10         this.functionName = functionName;\r
11         this.totalCodeSize = totalCodeSize;\r
12         this.coveredCodeSize = coveredCodeSize;\r
13     }\r
14 }\r