diff -r 000000000000 -r fb279309251b uidesigner/com.nokia.sdt.component.symbian.test/data/scripts/twice.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/uidesigner/com.nokia.sdt.component.symbian.test/data/scripts/twice.js Fri Apr 03 23:33:03 2009 +0100 @@ -0,0 +1,12 @@ + +var gCounter = 23 + +function Base() { + this.counter = gCounter + gCounter *= 2 +} + +Base.prototype.fiddle = function() { return this.counter; } +Base.prototype.faddle = function() { return this.counter; } + +