| 241 | } |
| 242 | |
| 243 | RuntimeScriptValue RuntimeScript::GetSymbolAddress(const String &symname) const |
| 244 | { |
| 245 | uint32_t exp_index = _exportLookup.GetIndexOfAny(symname); |
| 246 | return (exp_index < UINT32_MAX) ? _resolvedExports[exp_index].Value : RuntimeScriptValue(); |
| 247 | } |
| 248 | |
| 249 | bool RuntimeScript::FindExportedFunction(const String &fn_name, int32_t &start_at, int32_t &num_args) const |
| 250 | { |
no test coverage detected