| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 | /* * Copyright (C)2005-2015 Haxe Foundation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. */@:coreApi class Reflect {	public inline static function hasField( o : Dynamic, field : String ) : Bool {		return untyped __js__('Object').prototype.hasOwnProperty.call(o, field);	}	public static function field( o : Dynamic, field : String ) : Dynamic {		try return untyped o[field] catch( e : Dynamic ) return null;	}	public inline static function setField( o : Dynamic, field : String, value : Dynamic ) : Void untyped {		o[field] = value;	}	public static inline function getProperty( o : Dynamic, field : String ) : Dynamic untyped {		var tmp;		return if( o == null ) __define_feature__("Reflect.getProperty",null) else if( o.__properties__ && (tmp=o.__properties__["get_"+field]) ) o[tmp]() else o[field];	}	public static inline function setProperty( o : Dynamic, field : String, value : Dynamic ) : Void untyped {		var tmp;		if( o.__properties__ && (tmp=o.__properties__["set_"+field]) ) o[tmp](value) else o[field] = __define_feature__("Reflect.setProperty",value);	}	public inline static function callMethod( o : Dynamic, func : haxe.Constraints.Function, args : Array<Dynamic> ) : Dynamic untyped {		return func.apply(o,args);	}	public static function fields( o : Dynamic ) : Array<String> {		var a = [];		if (o != null) untyped {			var hasOwnProperty = __js__('Object').prototype.hasOwnProperty;			__js__("for( var f in o ) {");			if( f != "__id__" && f != "hx__closures__" && hasOwnProperty.call(o, f) ) a.push(f);			__js__("}");		}		return a;	}	public static function isFunction( f : Dynamic ) : Bool untyped {		return __js__("typeof(f)") == "function" && !(js.Boot.isClass(f) || js.Boot.isEnum(f));	}	public static function compare<T>( a : T, b : T ) : Int {		return ( a == b ) ? 0 : (((cast a) > (cast b)) ? 1 : -1);	}	public static function compareMethods( f1 : Dynamic, f2 : Dynamic ) : Bool {		if( f1 == f2 )			return true;		if( !isFunction(f1) || !isFunction(f2) )			return false;		return f1.scope == f2.scope && f1.method == f2.method && f1.method != null;	}	public static function isObject( v : Dynamic ) : Bool untyped {		if( v == null )			return false;		var t = __js__("typeof(v)");		return (t == "string" || (t == "object" && v.__enum__ == null)) || (t == "function" && (js.Boot.isClass(v) || js.Boot.isEnum(v)) != null);	}	public static function isEnumValue( v : Dynamic ) : Bool {		return v != null && v.__enum__ != null;	}	public static function deleteField( o : Dynamic, field : String ) : Bool untyped {		if( !hasField(o,field) ) return false;		__js__("delete")(o[field]);		return true;	}	public static function copy<T>( o : T ) : T {		var o2 : Dynamic = {};		for( f in Reflect.fields(o) )			Reflect.setField(o2,f,Reflect.field(o,f));		return o2;	}	@:overload(function( f : Array<Dynamic> -> Void ) : Dynamic {})	public static function makeVarArgs( f : Array<Dynamic> -> Dynamic ) : Dynamic {		return function() {			var a = untyped Array.prototype.slice.call(__js__("arguments"));			return f(a);		};	}}
 |