| 56 | // |
| 57 | |
| 58 | Object *Object::Create() |
| 59 | { |
| 60 | Object *obj = new Object(); |
| 61 | obj->SetBase(Object::sPrototype); |
| 62 | return obj; |
| 63 | } |
| 64 | |
| 65 | Object *Object::Create(ExprTokenType *aParam[], int aParamCount, ResultToken *apResultToken) |
| 66 | { |
nothing calls this directly
no test coverage detected