Activity log for bug #1115748

Date Who What changed Old value New value Message
2013-02-05 00:08:03 zahurdias bug added bug
2013-02-05 00:15:54 zahurdias description package { import flash.display.MovieClip; public class test3 extends MovieClip { trace("Test case #3"); private var o1:Object= {}; private var o2:Object= {}; Object.prototype.foo = "foo"; o1.foo = "bar" trace(o1) // [object Object] trace(o2) // [object Object] trace(o1.foo) // bar trace(o2.foo) // foo trace(o1.foo.toString) // function Function() {} trace(o2.foo.toString) // function Function() {} } } package { import flash.display.MovieClip; public class test3 extends MovieClip { trace("Test case #3"); prototype.newValue = 1 trace(prototype); [object Object] trace(prototype.toString); // function Function() {} } }
2013-02-05 03:03:10 zahurdias description package { import flash.display.MovieClip; public class test3 extends MovieClip { trace("Test case #3"); prototype.newValue = 1 trace(prototype); [object Object] trace(prototype.toString); // function Function() {} } } package { import flash.display.*; public class test3 extends MovieClip { public function test3() { prototype.newValue = 1; trace(prototype); // [object Object] trace(prototype.toString); // function Function() {} return; }// end function } }
2013-02-05 03:03:44 zahurdias description package { import flash.display.*; public class test3 extends MovieClip { public function test3() { prototype.newValue = 1; trace(prototype); // [object Object] trace(prototype.toString); // function Function() {} return; }// end function } } package {     import flash.display.*;     public class test3 extends MovieClip     {         public function test3()         {    prototype.newValue = 1;    trace(prototype); // [object Object]    trace(prototype.toString); // function Function() {}         return;         }// end function     } }
2013-02-05 03:04:13 zahurdias description package {     import flash.display.*;     public class test3 extends MovieClip     {         public function test3()         {    prototype.newValue = 1;    trace(prototype); // [object Object]    trace(prototype.toString); // function Function() {}         return;         }// end function     } } package {     import flash.display.*;     public class test3 extends MovieClip     {         public function test3()         { prototype.newValue = 1; trace(prototype); // [object Object] trace(prototype.toString); // function Function() {}         return;         }// end function     } }
2013-02-06 20:11:14 Antti Ajanki lightspark: importance Undecided Medium
2013-02-06 20:11:14 Antti Ajanki lightspark: status New Confirmed