]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/types/util/TMultiApply.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / types / util / TMultiApply.java
diff --git a/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/types/util/TMultiApply.java b/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/types/util/TMultiApply.java
new file mode 100644 (file)
index 0000000..b2487ee
--- /dev/null
@@ -0,0 +1,15 @@
+package org.simantics.scl.compiler.types.util;
+
+import java.util.List;
+
+import org.simantics.scl.compiler.types.Type;
+
+public class TMultiApply {
+    public final Type function;
+    public final List<Type> parameters;
+    
+    public TMultiApply(Type function, List<Type> parameters) {
+        this.function = function;
+        this.parameters = parameters;
+    }
+}
\ No newline at end of file