blob: 79b3ec811bbbd5ad681dffe6f876a0987a67a1c9 [file] [log] [blame]
var pdel = (function() {
return {
f2: function() {
return this.f1(); // ctr+click does not work on f1
},
f1: function() {
return 'ahoj';
}
}
})();