uidesigner/com.nokia.sdt.component.symbian.test/data/scripts/twice.js
author timkelly
Mon, 21 Sep 2009 10:36:46 -0500
branchRCL_2_2
changeset 503 a31863532fab
parent 0 fb279309251b
permissions -rw-r--r--
Carbide 2.3.0 changes for ISDKManager


var gCounter = 23

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

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