comparison src/luan/interp/Stmt.java @ 12:9cea1aea5eef

CmdLine can run files git-svn-id: https://luan-java.googlecode.com/svn/trunk@13 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Fri, 23 Nov 2012 10:37:40 +0000
parents b7d7069fee58
children 5cf15507d77e
comparison
equal deleted inserted replaced
11:b7d7069fee58 12:9cea1aea5eef
4 import luan.LuaException; 4 import luan.LuaException;
5 5
6 6
7 public interface Stmt { 7 public interface Stmt {
8 public void eval(LuaState lua) throws LuaException; 8 public void eval(LuaState lua) throws LuaException;
9
10 static final Stmt EMPTY = new Stmt() {
11 public void eval(LuaState lua) {}
12 };
9 } 13 }