search for: 3ef47c8

Displaying 1 result from an estimated 1 matches for "3ef47c8".

Did you mean: 36f47c8
2007 Nov 14
0
4 commits - libswfdec/swfdec_as_interpret.c test/trace
...oo +[object Object] +[type Function] +fuz +foo +[object Object] +[type Function] +fuz +calling last function's super object: [object Object] +foo +[object Object] +[type Function] +fuz diff --git a/test/trace/super-existance.as b/test/trace/super-existance.as new file mode 100644 index 0000000..3ef47c8 --- /dev/null +++ b/test/trace/super-existance.as @@ -0,0 +1,63 @@ +// makeswf -v 7 -s 200x150 -r 1 -o movie23.swf movie23.as + +trace (super); +fuz = function () { + trace ("fuz"); +}; +foo = function () extends fuz { + trace ("foo"); + trace (super); + trace (super.toStrin...