blob: 9bc6854f4355eaa0b5a6366249188a02f100b912 [file] [log] [blame]
function Employee(name, dept) this.name = name || "";
function WorkerBee(name, dept, projs) {
this.base = Employee
this.base(name, dept)
}
function Engineer(name, projs, machine) {
this.base = WorkerBee
this.base(name, "engineering", projs)
__proto__["a" + constructor] = 1
}
new Engineer;