package org.simantics.scl.compiler.internal.interpreted; /** * Interpreted expression */ public interface IExpression { Object execute(Object[] variableBindings); }