| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 | /* * 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 static function hasField( o : Dynamic, field : String ) : Bool untyped {		return o.hasOwnProperty( field );	}	public static function field( o : Dynamic, field : String ) : Dynamic untyped {		// sealed classes will throw an exception		return try o[field] catch( e : Dynamic ) null;	}	public inline static function setField( o : Dynamic, field : String, value : Dynamic ) : Void untyped {		o[field] = value;	}	public static function getProperty( o : Dynamic, field : String ) : Dynamic untyped {		try {			return o["get_" + field]();		} catch( e : Dynamic ) try {			return o[field];		} catch( e : Dynamic ) {			return null;		}	}	public static function setProperty( o : Dynamic, field : String, value : Dynamic ) : Void untyped {		try {			o["set_" + field](value);		} catch( e : Dynamic ) {			o[field] = 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> untyped {		if( o == null ) return new Array();		#if as3		var a : Array<String> = __keys__(o);		var i = 0;		while( i < a.length ){			if( !o.hasOwnProperty(a[i]) )				a.splice(i,1);			else				++i;		}		#else		var i = 0;		var a = [];		while( untyped __has_next__(o,i) ) {			var prop = untyped __forin__(o,i);			if( o.hasOwnProperty(prop) )				a.push(prop);		}		#end		return a;	}	public static function isFunction( f : Dynamic ) : Bool untyped {		return __typeof__(f) == "function";	}	public static function compare<T>( a : T, b : T ) : Int {		var a : Dynamic = a;		var b : Dynamic = b;		return ( a == b ) ? 0 : ((a > b) ? 1 : -1);	}	public static function compareMethods( f1 : Dynamic, f2 : Dynamic ) : Bool {		return f1 == f2; // VM-level closures	}	public static function isObject( v : Dynamic ) : Bool untyped {		if( v == null )			return false;		var t = __typeof__(v);		if ( t == "object" ) {			return !isEnumValue(v);		}		return (t == "string");	}	public static function isEnumValue( v : Dynamic ) : Bool {		#if as3		return try Type.getEnum(v) != null catch ( e: Dynamic) false;		#else		return try v.__enum__ == true catch ( e : Dynamic) false;		#end	}	public static function deleteField( o : Dynamic, field : String ) : Bool untyped {		if( o.hasOwnProperty(field) != true ) return false;		__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(__arguments__) { return f(__arguments__); };	}}
 |