changeset 2 | d760517a8095 |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/uidesigner/com.nokia.sdt.component.symbian.test/data/scripts/sgderived.js Tue Mar 24 22:20:21 2009 -0500 @@ -0,0 +1,10 @@ + +function Derived() { + Base.apply(this) +} + +Derived.prototype = new Base() + +Derived.prototype.act = function() { + return "Derived-Act-"+form + "/" + this.shared() +}