]> gerrit.simantics Code Review - simantics/platform.git/blob - ProcedureType.java
8f805b43a15ab4fb13ab4538376992893f29914f
[simantics/platform.git] / 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 }