]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/module/coverage/FunctionCoverage.java
Fixed all line endings of the repository
[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;
2
3 public class FunctionCoverage extends AbstractCoverage {
4     public final String functionName;
5     public final int totalCodeSize;
6     public final int coveredCodeSize;
7
8     FunctionCoverage(String functionName, int totalCodeSize, int coveredCodeSize) {
9         super(functionName, totalCodeSize, coveredCodeSize);
10         this.functionName = functionName;
11         this.totalCodeSize = totalCodeSize;
12         this.coveredCodeSize = coveredCodeSize;
13     }
14 }