| 1344 | } |
| 1345 | |
| 1346 | bool Object::DefineMethod(name_t aName, IObject *aFunc) |
| 1347 | { |
| 1348 | if (auto prop = DefineProperty(aName)) |
| 1349 | { |
| 1350 | prop->SetMethod(aFunc); |
| 1351 | return true; |
| 1352 | } |
| 1353 | return false; |
| 1354 | } |
| 1355 | |
| 1356 | Property *Object::DefineProperty(name_t aName) |
| 1357 | { |
no test coverage detected