view src/luan/interp/Settable.java @ 86:6db8f286fa6c

_ENV is per module, not global git-svn-id: https://luan-java.googlecode.com/svn/trunk@87 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Wed, 27 Feb 2013 08:03:51 +0000
parents 8ede219cd111
children
line wrap: on
line source

package luan.interp;

import luan.LuanException;


interface Settable {
	public void set(LuanStateImpl luan,Object value) throws LuanException;
}