Explorar el Código

*** empty log message ***

Franco Ponticelli hace 16 años
padre
commit
ced46e7c78
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      std/Reflect.hx

+ 1 - 1
std/Reflect.hx

@@ -56,7 +56,7 @@ class Reflect {
 	/**
 		Returns the field of an object, or null if [o] is not an object or doesn't have this field.
 	**/
-	public inline static function field( o : Dynamic, field : String ) : Dynamic untyped {
+	public #if !php inline #end static function field( o : Dynamic, field : String ) : Dynamic untyped {
 		#if flash9
 			return (o == null) ? null : o[field];
 		#elseif flash