uidesigner/com.nokia.sdt.component.symbian.test/data/scripts/transientGlobals3.js
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/uidesigner/com.nokia.sdt.component.symbian.test/data/scripts/transientGlobals3.js Tue Mar 24 22:20:21 2009 -0500
@@ -0,0 +1,23 @@
+
+globalString = "ScriptGlobal";
+
+function Proto () {
+ this.counter = 1;
+}
+
+Proto.prototype = new Object()
+
+function extra() {
+ anotherglobal = 3;
+}
+
+Proto.prototype.myfunc = function() {
+ var oo = inst;
+
+ myglobal = 2;
+ extra();
+
+ this.foo = 3;
+
+ return globalString + (this.counter++);
+}