uidesigner/com.nokia.sdt.component.symbian.test/data/scripts/twice.js
author dadubrow
Tue, 27 Apr 2010 13:17:04 -0500
branchRCL_2_4
changeset 1305 68114c404585
parent 0 fb279309251b
permissions -rw-r--r--
bug 11181


var gCounter = 23

function Base() {
	this.counter = gCounter
	gCounter *= 2
}

Base.prototype.fiddle = function() { return this.counter; }
Base.prototype.faddle = function() { return this.counter; }