]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/internal/interpreted/IExpression.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / internal / interpreted / IExpression.java
1 package org.simantics.scl.compiler.internal.interpreted;
2
3
4 /**
5  * Interpreted expression
6  */
7 public interface IExpression {
8     Object execute(Object[] variableBindings);
9 }