view core/src/luan/impl/BreakStmt.java @ 195:24ede40ee0aa

make MetatableGetter DeepCloneable, scoped, and secure git-svn-id: https://luan-java.googlecode.com/svn/trunk@196 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Thu, 03 Jul 2014 08:19:48 +0000
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();
	}
}