]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/commands/CompiledCommand.java
(refs #7250) Merging master, minor CHR bugfixes
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / commands / CompiledCommand.java
1 package org.simantics.scl.compiler.commands;
2
3 import org.simantics.scl.compiler.types.Type;
4 import org.simantics.scl.runtime.function.Function;
5
6 public class CompiledCommand {
7     public final Function command;
8     public final Type type;
9     
10     public CompiledCommand(Function command, Type type) {
11         this.command = command;
12         this.type = type;
13     }
14 }