view core/src/luan/impl/Stmt.java @ 315:6e11eace1091

fix Ab_testing.format() git-svn-id: https://luan-java.googlecode.com/svn/trunk@316 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Fri, 26 Dec 2014 11:13:28 +0000
parents 3dcb0f9bee82
children 140cc5191b7a
line wrap: on
line source

package luan.impl;

import luan.LuanException;


interface Stmt {
	public void eval(LuanStateImpl luan) throws LuanException;

	static final Stmt EMPTY = new Stmt() {
		@Override public void eval(LuanStateImpl luan) {}
	};
}