1 package org.simantics.scl.compiler.commands;
\r
3 import org.simantics.scl.compiler.types.Type;
\r
4 import org.simantics.scl.runtime.function.Function;
\r
6 public class CompiledCommand {
\r
7 public final Function command;
\r
8 public final Type type;
\r
10 public CompiledCommand(Function command, Type type) {
\r
11 this.command = command;
\r