package org.simantics.scl.compiler.commands; import org.simantics.scl.compiler.types.Type; import org.simantics.scl.runtime.function.Function; public class CompiledCommand { public final Function command; public final Type type; public CompiledCommand(Function command, Type type) { this.command = command; this.type = type; } }