]> gerrit.simantics Code Review - simantics/platform.git/blob - CompiledCommand.java
59cbad8ae4e5d56ce5b01bc282434a8ca4da9208
[simantics/platform.git] / 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 }