| Constant | Defined 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 | ||
| _toUnicodeNotation | Constant |
public const _toUnicodeNotation:FunctionReturns the unicode string notation of the specified numeric value.
| dumpArray | Constant |
public const dumpArray:FunctionDumps a string representation of any Array reference.
| dumpDate | Constant |
public const dumpDate:FunctionDumps a string representation of any Date reference.
| dumpObject | Constant |
public const dumpObject:FunctionDumps a string representation of an object.
| dumpString | Constant |
public const dumpString:FunctionDumps a string representation of any String value.
| dump | Constant |
public const dump:FunctionDumps a string representation of any object reference.
Works like the eden.serialize() function and supports the toSource() method.
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)
// }