]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/commands/CompiledCommand.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / commands / CompiledCommand.java
diff --git a/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/commands/CompiledCommand.java b/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/commands/CompiledCommand.java
new file mode 100644 (file)
index 0000000..c2f6c72
--- /dev/null
@@ -0,0 +1,14 @@
+package org.simantics.scl.compiler.commands;\r
+\r
+import org.simantics.scl.compiler.types.Type;\r
+import org.simantics.scl.runtime.function.Function;\r
+\r
+public class CompiledCommand {\r
+    public final Function command;\r
+    public final Type type;\r
+    \r
+    public CompiledCommand(Function command, Type type) {\r
+        this.command = command;\r
+        this.type = type;\r
+    }\r
+}\r