comparison src/luan/interp/Expr.java @ 154:c2e5101682ae

Expr extends Expressions git-svn-id: https://luan-java.googlecode.com/svn/trunk@155 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Tue, 17 Jun 2014 09:55:43 +0000
parents 8ede219cd111
children
comparison
equal deleted inserted replaced
153:fa03671f59a0 154:c2e5101682ae
1 package luan.interp; 1 package luan.interp;
2 2
3 import luan.LuanException; 3 import luan.LuanException;
4 4
5 5
6 interface Expr extends Code { 6 interface Expr extends Expressions {}
7 public Object eval(LuanStateImpl luan) throws LuanException;
8 }