| 2325 | } |
| 2326 | |
| 2327 | Span<byte> VisualScript::GetMethodMetaData(int32 index, int32 typeID) |
| 2328 | { |
| 2329 | auto& method = _methods[index]; |
| 2330 | auto meta = method.Node->Meta.GetEntry(typeID); |
| 2331 | return meta ? ToSpan(meta->Data) : Span<byte>(nullptr, 0); |
| 2332 | } |
| 2333 | |
| 2334 | #endif |
| 2335 |
no test coverage detected