]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/types/util/ProcedureType.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / types / util / ProcedureType.java
1 package org.simantics.scl.compiler.types.util;
2
3 import org.simantics.scl.compiler.types.Type;
4
5 public class ProcedureType {
6     public final Type type;
7     public final Type effect;
8     
9     public ProcedureType(Type type, Type effect) {
10         this.type = type;
11         this.effect = effect;
12     }
13 }