comparison src/luan/interp/Stmt.java @ 48:64ecb7a3aad7

rename Lua to Luan git-svn-id: https://luan-java.googlecode.com/svn/trunk@49 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Fri, 28 Dec 2012 03:29:12 +0000
parents e3624b7cd603
children 8ede219cd111
comparison
equal deleted inserted replaced
47:659c7139e903 48:64ecb7a3aad7
1 package luan.interp; 1 package luan.interp;
2 2
3 import luan.LuaException; 3 import luan.LuanException;
4 4
5 5
6 interface Stmt { 6 interface Stmt {
7 public void eval(LuaStateImpl lua) throws LuaException; 7 public void eval(LuanStateImpl lua) throws LuanException;
8 8
9 static final Stmt EMPTY = new Stmt() { 9 static final Stmt EMPTY = new Stmt() {
10 @Override public void eval(LuaStateImpl lua) {} 10 @Override public void eval(LuanStateImpl lua) {}
11 }; 11 };
12 } 12 }