]> gerrit.simantics Code Review - simantics/platform.git/blob - module/coverage/FunctionCoverage.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / 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