| 1001 | |
| 1002 | |
| 1003 | Object *Object::CreateClass(Object *aPrototype) |
| 1004 | { |
| 1005 | auto cls = new Object(); |
| 1006 | cls->SetBase(sClassPrototype); |
| 1007 | cls->SetOwnProp(_T("Prototype"), aPrototype); |
| 1008 | return cls; |
| 1009 | } |
| 1010 | |
| 1011 | |
| 1012 | Object *Object::CreatePrototype(LPTSTR aClassName, Object *aBase) |
nothing calls this directly
no test coverage detected