view core/src/luan/impl/LenExpr.java @ 572:f1601a4ce1aa

fix stack when calling meta-methods
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 12 Jul 2015 21:34:23 -0600
parents b48cfa14ba60
children 7c3ad6db8ac3
line wrap: on
line source

package luan.impl;

import luan.Luan;
import luan.LuanTable;
import luan.LuanFunction;
import luan.LuanException;
import luan.LuanElement;
import luan.LuanBit;


final class LenExpr extends UnaryOpExpr {

	LenExpr(LuanElement el,Expr op) {
		super(el,op);
	}

	@Override public Object eval(LuanStateImpl luan) throws LuanException {
		Object o = op.eval(luan);
		if( o instanceof String ) {
			String s = (String)o;
			return s.length();
		}
		if( o instanceof byte[] ) {
			byte[] a = (byte[])o;
			return a.length;
		}
		LuanBit bit = luan.bit(el);
		if( !(o instanceof LuanTable) )
			throw bit.exception( "attempt to get length of a " + Luan.type(o) + " value" );
		LuanTable t = (LuanTable)o;
		return t.length(bit);
	}
}