michael@0: // Binary: cache/js-dbg-64-2d95fc517e57-linux michael@0: // Flags: -m -n michael@0: // michael@0: michael@0: function WorkerBee(name, dept, projs) { michael@0: this.projects &= projs || new Array(); michael@0: } michael@0: function Engineer(name, projs, machine) { michael@0: this.base = WorkerBee; michael@0: this.base(name, "engineering", projs) michael@0: this.machine = machine || ""; michael@0: } michael@0: Engineer.prototype = {}; michael@0: var les = new Engineer("Morris, Les", new Array("JavaScript"), "indy");