uidesigner/com.nokia.sdt.component.symbian.test/data/scripts/twice.js
author chpeckha
Mon, 22 Mar 2010 15:56:05 -0500
changeset 1122 913f5d83a1b0
parent 0 fb279309251b
permissions -rw-r--r--
remove unused classes


var gCounter = 23

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

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