blob: 56eafcf294c9dc7ab7eed4619b2431a08d1937dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Binary: cache/js-dbg-64-2d95fc517e57-linux
// Flags: -m -n
//
function WorkerBee(name, dept, projs) {
this.projects &= projs || new Array();
}
function Engineer(name, projs, machine) {
this.base = WorkerBee;
this.base(name, "engineering", projs)
this.machine = machine || "";
}
Engineer.prototype = {};
var les = new Engineer("Morris, Les", new Array("JavaScript"), "indy");
|