view core/src/luan/impl/Expressions.java @ 284:8870840251ea

use LinkedHashMap in LuanTable to preserve order git-svn-id: https://luan-java.googlecode.com/svn/trunk@285 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Tue, 02 Dec 2014 03:55:33 +0000
parents 3dcb0f9bee82
children e387e4021afe
line wrap: on
line source

package luan.impl;

import luan.LuanException;


interface Expressions extends Code {
	public Object eval(LuanStateImpl luan) throws LuanException;
}