Home | History | Annotate | Download | only in inherit

Lines Matching refs:prototype

32     This tests the syntax ObjectName.prototype = new PrototypeObject using the
55 Manager.prototype = new Employee();
61 WorkerBee.prototype = new Employee;
67 SalesPerson.prototype = new WorkerBee;
73 Engineer.prototype = new WorkerBee;
97 "employee.__proto__ == Employee.prototype",
99 employee.__proto__ == Employee.prototype );
102 "manager.__proto__ == Manager.prototype",
104 manager.__proto__ == Manager.prototype );
107 "workerbee.__proto__ == WorkerBee.prototype",
109 workerbee.__proto__ == WorkerBee.prototype );
112 "salesperson.__proto__ == SalesPerson.prototype",
114 salesperson.__proto__ == SalesPerson.prototype );
117 "engineer.__proto__ == Engineer.prototype",
119 engineer.__proto__ == Engineer.prototype );