comparison src/luan/impl/Stmt.java @ 166:4eaee12f6c65

move luan/interp to impl git-svn-id: https://luan-java.googlecode.com/svn/trunk@167 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Sun, 22 Jun 2014 04:17:38 +0000
parents src/luan/interp/Stmt.java@8ede219cd111
children
comparison
equal deleted inserted replaced
165:94bbc4cbc106 166:4eaee12f6c65
1 package luan.impl;
2
3 import luan.LuanException;
4
5
6 interface Stmt {
7 public void eval(LuanStateImpl luan) throws LuanException;
8
9 static final Stmt EMPTY = new Stmt() {
10 @Override public void eval(LuanStateImpl luan) {}
11 };
12 }