List keyeq() and keyindex() methods as abstract on LuaTable.Entry.

This commit is contained in:
James Roseborough
2015-03-14 18:12:13 +00:00
parent 8c8c98fb00
commit 63e99c1500
2 changed files with 3 additions and 0 deletions

View File

@@ -1073,6 +1073,8 @@ public class LuaTable extends LuaValue implements Metatable {
public abstract LuaValue key();
public abstract LuaValue value();
abstract Entry set(LuaValue value);
public abstract boolean keyeq( LuaValue key );
public abstract int keyindex( int hashMask );
public int arraykey( int max ) {
return 0;