Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1
2 eval("try { name(); } catch(e) {}");
3 function Employee ( name, dept ) {
4 this.name=name || ""
5 this.dept
6 }
7 function WorkerBee ( name, dept, projs ) {
8 this.base=Employee
9 this.base( name, print("WHAT"))
10 }
11 new WorkerBee;
12 WorkerBee();