blob: 2a4a21b815a10d7556a2e885febbc3081cb88e48 [file] [log] [blame]
function printSomething() {
formatter.println("printSomething executed");
}
var text = "hello from global";
this.printSomething();
function anotherFunction() {
//this.printSomething();
this.anotherInAnother = function anotherInAnother() {
formatter.println(text);
}
}
this.anotherFunction();
var af = new anotherFunction();
af.anotherInAnother();