Add automated tests on function-type FSCommand parameter passing.
[gnash.git] / testsuite / actionscript.all / utils.as
blobea5b72543c44a4dcfa415b5e35aeef8e316aeb72
1 //
2 // Copyright (C) 2005, 2006, 2007, 2009, 2010 Free Software
3 // Foundation, Inc
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 // Utilities for ActionScript tests
23 // Return a string containing a dump of the given object
25 // Usage:
26 // var o = new Array();
27 // trace(dumpObject(o));
30 dumpObject = function(obj, indent)
32 var s = '';
33 //if ( typeof(obj) == 'object' )
35 if ( indent == undefined ) indent = 0;
37 for (var i in obj)
39 var value = obj[i];
40 for (var j=0; j<indent; j++) s += ' ';
41 if ( typeof(value) == 'object' ) {
42 s += i+" (object):\n";
43 s += dumpObject(value, indent+1);
44 } else {
45 s += i+'='+value+' ('+typeof(value)+')\n';
48 return s;