]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/module/coverage/FunctionCoverage.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / module / coverage / 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