瀏覽代碼

report no method error

ncannasse 11 年之前
父節點
當前提交
c1be6d4566
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      h2d/comp/Parser.hx

+ 2 - 0
h2d/comp/Parser.hx

@@ -8,6 +8,8 @@ private class CustomInterp extends hscript.Interp {
 			if( Reflect.field(o, rf) == null ) throw "JQuery don't have " + f + " implemented";
 			f = rf;
 		}
+		if( Reflect.field(o, f) == null )
+			throw o + " does not have method " + f;
 		return super.fcall(o, f, args);
 	}
 }