view core/src/luan/impl/BreakStmt.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
line wrap: on
line source

package luan.impl;


final class BreakStmt implements Stmt {

	@Override public void eval(LuanStateImpl luan) {
		throw new BreakException();
	}
}