view core/src/luan/impl/Stmt.java @ 593:92c9fa5e39e6

remove theme "Get" and "Set", and add "define"
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 31 Aug 2015 10:16:57 -0600
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) {}
	};
}