| 786 | } |
| 787 | |
| 788 | const char *asCScriptObject::GetPropertyName(asUINT prop) const |
| 789 | { |
| 790 | if( prop >= objType->properties.GetLength() ) |
| 791 | return 0; |
| 792 | |
| 793 | return objType->properties[prop]->name.AddressOf(); |
| 794 | } |
| 795 | |
| 796 | void *asCScriptObject::GetAddressOfProperty(asUINT prop) |
| 797 | { |