interface
| 562 | |
| 563 | // interface |
| 564 | int asCScriptFunction::GetTypeId() const |
| 565 | { |
| 566 | // This const cast is ok, the object won't be modified |
| 567 | asCDataType dt = asCDataType::CreateType(engine->FindMatchingFuncdef(const_cast<asCScriptFunction*>(this), 0), false); |
| 568 | return engine->GetTypeIdFromDataType(dt); |
| 569 | } |
| 570 | |
| 571 | // interface |
| 572 | bool asCScriptFunction::IsCompatibleWithTypeId(int typeId) const |
nothing calls this directly
no test coverage detected