Browse Source

Lua : drop RexTools, remove cruft from Boot.hx

Justin Donaldson 10 years ago
parent
commit
9bf12a2d7d
2 changed files with 0 additions and 8 deletions
  1. 0 8
      std/lua/Boot.hx
  2. 0 0
      std/lua/RexTools.hx

+ 0 - 8
std/lua/Boot.hx

@@ -105,14 +105,6 @@ class Boot {
 		return tabobj;
 	}
 
-	@:keep
-	public static function resolveMethod(table : Dynamic,  key:Dynamic){
-		untyped __lua__("for index, value in ipairs(table.__methods) do
-		if value[key] ~= nil then return value[key] end
-	end
-	return nil");
-	}
-
 	public static function urlEncode(str:String){
 	if (str != null) {
 		str = lua.StringTools.gsub(str, "\n", "\r\n");

+ 0 - 0
std/lua/RexTools.hx