view src/luan/interp/LenExpr.java @ 48:64ecb7a3aad7

rename Lua to Luan git-svn-id: https://luan-java.googlecode.com/svn/trunk@49 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Fri, 28 Dec 2012 03:29:12 +0000
parents a443637829c1
children 8ede219cd111
line wrap: on
line source

package luan.interp;

import luan.Luan;
import luan.LuanTable;
import luan.LuanFunction;
import luan.LuanException;
import luan.LuanSource;


final class LenExpr extends UnaryOpExpr {

	LenExpr(LuanSource.Element se,Expr op) {
		super(se,op);
	}

	@Override public Object eval(LuanStateImpl lua) throws LuanException {
		Object o = op.eval(lua);
		if( o instanceof String ) {
			String s = (String)o;
			return s.length();
		}
		LuanFunction fn = lua.getHandlerFunction(se,"__len",o);
		if( fn != null )
			return Luan.first(lua.call(fn,se,"__len",o));
		if( o instanceof LuanTable ) {
			LuanTable t = (LuanTable)o;
			return t.length();
		}
		throw new LuanException( lua, se, "attempt to get length of a " + Luan.type(o) + " value" );
	}
}