diff src/luan/interp/Stmt.java @ 49:8ede219cd111

add WebShell git-svn-id: https://luan-java.googlecode.com/svn/trunk@50 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Fri, 28 Dec 2012 19:35:04 +0000
parents 64ecb7a3aad7
children
line wrap: on
line diff
--- a/src/luan/interp/Stmt.java	Fri Dec 28 03:29:12 2012 +0000
+++ b/src/luan/interp/Stmt.java	Fri Dec 28 19:35:04 2012 +0000
@@ -4,9 +4,9 @@
 
 
 interface Stmt {
-	public void eval(LuanStateImpl lua) throws LuanException;
+	public void eval(LuanStateImpl luan) throws LuanException;
 
 	static final Stmt EMPTY = new Stmt() {
-		@Override public void eval(LuanStateImpl lua) {}
+		@Override public void eval(LuanStateImpl luan) {}
 	};
 }