Home | History | Annotate | Download | only in inherit

Lines Matching defs:specialty

99     Employee.prototype.specialty = "none";
106 Engineer.prototype.specialty = "code";
112 "jim = new Employee(); jim.specialty",
114 jim.specialty );
117 "terry = new Engineer(); terry.specialty",
119 terry.specialty );
122 "sean = new SalesPerson(); sean.specialty",
124 sean.specialty );
127 "wally = new Manager(); wally.specialty",
129 wally.specialty );
132 "furry = new Manager(); furry.specialty",
134 furry.specialty );
137 "pat = new Employee(); pat.specialty",
139 pat.specialty );
142 "leslie = new Engineer(); leslie.specialty",
144 leslie.specialty );
147 "bubbles = new SalesPerson(); bubbles.specialty",
149 bubbles.specialty );
153 "chris = new Employee(); chris.specialty",
155 chris.specialty );