]> gerrit.simantics Code Review - simantics/platform.git/blob - scl/compiler/commands/CompiledCommand.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / 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 }