Public Constants
 ConstantDefined By
  dump : Function
Dumps a string representation of any object reference.
core
  dumpArray : Function
Dumps a string representation of any Array reference.
core
  dumpDate : Function
Dumps a string representation of any Date reference.
core
  dumpObject : Function
Dumps a string representation of an object.
core
  dumpString : Function
Dumps a string representation of any String value.
core
  _toUnicodeNotation : Function
Returns the unicode string notation of the specified numeric value.
core
Constant Detail
_toUnicodeNotationConstant
public const _toUnicodeNotation:Function

Returns the unicode string notation of the specified numeric value.

dumpArrayConstant 
public const dumpArray:Function

Dumps a string representation of any Array reference.

dumpDateConstant 
public const dumpDate:Function

Dumps a string representation of any Date reference.

dumpObjectConstant 
public const dumpObject:Function

Dumps a string representation of an object.

dumpStringConstant 
public const dumpString:Function

Dumps a string representation of any String value.

dumpConstant 
public const dump:Function

Dumps a string representation of any object reference.

Works like the eden.serialize() function and supports the toSource() method.


Example
basic usage
     
     var test0:Object = { a:1, b:2, c:null, d:undefined, e:[1,2,3], f:"hello world", g:new Date() };
     
     trace( dump( test0 ) );
     
     //output
     //{a:1,b:2,c:null,d:undefined,e:[1,2,3],f:"hello world",g:new Date(2010,4,3,20,35,7,860)}
     
     trace( dump( test0, true ) );
     
     //output
     // {
     //     a:1,
     //     b:2,
     //     c:null,
     //     d:undefined,
     //     e:
     //     [
     //         1,
     //         2,
     //         3
     //     ],
     //     f:"hello world",
     //     g:new Date(2010,4,3,20,35,7,860)
     // }
     
     
     
Function detail