I want to get first argument value (it's a string). For instance, I have the following instruction:
I have a list of instructions, sometimes there can be other arguments, and there might be other strings. How can I get the first argument only?
I tried to iterate through instructions, from the call I went higher, until I meet the ldstr
instruction. But it won't work if there are two string arguments passed. Any possible fix for it?